Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
214b3f31
Commit
214b3f31
authored
10 years ago
by
Pavel Machek
Committed by
Tom Rini
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
cleanup disk/part.c whitespace
Cleanup disk/part.c Signed-off-by:
Pavel Machek
<
pavel@denx.de
>
parent
ab7cb4ee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
disk/part.c
+5
-4
5 additions, 4 deletions
disk/part.c
with
5 additions
and
4 deletions
disk/part.c
+
5
−
4
View file @
214b3f31
...
@@ -133,7 +133,7 @@ typedef lbaint_t lba512_t;
...
@@ -133,7 +133,7 @@ typedef lbaint_t lba512_t;
* Overflowless variant of (block_count * mul_by / div_by)
* Overflowless variant of (block_count * mul_by / div_by)
* when div_by > mul_by
* when div_by > mul_by
*/
*/
static
lba512_t
lba512_muldiv
(
lba512_t
block_count
,
lba512_t
mul_by
,
lba512_t
div_by
)
static
lba512_t
lba512_muldiv
(
lba512_t
block_count
,
lba512_t
mul_by
,
lba512_t
div_by
)
{
{
lba512_t
bc_quot
,
bc_rem
;
lba512_t
bc_quot
,
bc_rem
;
...
@@ -215,7 +215,8 @@ void dev_print (block_dev_desc_t *dev_desc)
...
@@ -215,7 +215,8 @@ void dev_print (block_dev_desc_t *dev_desc)
lba512
=
(
lba
*
(
dev_desc
->
blksz
/
512
));
lba512
=
(
lba
*
(
dev_desc
->
blksz
/
512
));
/* round to 1 digit */
/* round to 1 digit */
mb
=
lba512_muldiv
(
lba512
,
10
,
2048
);
/* 2048 = (1024 * 1024) / 512 MB */
/* 2048 = (1024 * 1024) / 512 MB */
mb
=
lba512_muldiv
(
lba512
,
10
,
2048
);
mb_quot
=
mb
/
10
;
mb_quot
=
mb
/
10
;
mb_rem
=
mb
-
(
10
*
mb_quot
);
mb_rem
=
mb
-
(
10
*
mb_quot
);
...
@@ -248,7 +249,7 @@ void dev_print (block_dev_desc_t *dev_desc)
...
@@ -248,7 +249,7 @@ void dev_print (block_dev_desc_t *dev_desc)
#ifdef HAVE_BLOCK_DEVICE
#ifdef HAVE_BLOCK_DEVICE
void
init_part
(
block_dev_desc_t
*
dev_desc
)
void
init_part
(
block_dev_desc_t
*
dev_desc
)
{
{
#ifdef CONFIG_ISO_PARTITION
#ifdef CONFIG_ISO_PARTITION
if
(
test_part_iso
(
dev_desc
)
==
0
)
{
if
(
test_part_iso
(
dev_desc
)
==
0
)
{
...
@@ -295,7 +296,7 @@ void init_part (block_dev_desc_t * dev_desc)
...
@@ -295,7 +296,7 @@ void init_part (block_dev_desc_t * dev_desc)
defined(CONFIG_AMIGA_PARTITION) || \
defined(CONFIG_AMIGA_PARTITION) || \
defined(CONFIG_EFI_PARTITION)
defined(CONFIG_EFI_PARTITION)
static
void
print_part_header
(
const
char
*
type
,
block_dev_desc_t
*
dev_desc
)
static
void
print_part_header
(
const
char
*
type
,
block_dev_desc_t
*
dev_desc
)
{
{
puts
(
"
\n
Partition Map for "
);
puts
(
"
\n
Partition Map for "
);
switch
(
dev_desc
->
if_type
)
{
switch
(
dev_desc
->
if_type
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment