diff options
author | Pavel Machek | 2014-09-09 15:19:42 +0200 |
---|---|---|
committer | Tom Rini | 2014-09-24 18:30:28 -0400 |
commit | 214b3f311f0c1ac4c8f68e45133fc3547c76d8d1 (patch) | |
tree | 7c8e3e892f9adc718773d4d6f17905f93c5717ba | |
parent | ab7cb4eefa33b79834f0a000bcb365e98c14c693 (diff) |
cleanup disk/part.c whitespace
Cleanup disk/part.c
Signed-off-by: Pavel Machek <pavel@denx.de>
-rw-r--r-- | disk/part.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/disk/part.c b/disk/part.c index ecc5e7e0bfa..cfd77b0ff56 100644 --- a/disk/part.c +++ b/disk/part.c @@ -133,7 +133,7 @@ typedef lbaint_t lba512_t; * Overflowless variant of (block_count * mul_by / div_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; @@ -215,7 +215,8 @@ void dev_print (block_dev_desc_t *dev_desc) lba512 = (lba * (dev_desc->blksz/512)); /* 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_rem = mb - (10 * mb_quot); @@ -248,7 +249,7 @@ void dev_print (block_dev_desc_t *dev_desc) #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 if (test_part_iso(dev_desc) == 0) { @@ -295,7 +296,7 @@ void init_part (block_dev_desc_t * dev_desc) defined(CONFIG_AMIGA_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 ("\nPartition Map for "); switch (dev_desc->if_type) { |