diff options
author | Joe Perches <joe@perches.com> | 2011-10-10 04:08:07 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2011-10-31 18:43:58 -0400 |
commit | a983f368f8986c1ecb64f2947fcf594343130215 (patch) | |
tree | b9fef60714db92cf93242a96bbefcae2c7350ee2 /fs/udf/partition.c | |
parent | c2bff36c299b88ca5e05638dfa210d709e2a87ef (diff) |
udf: Neaten udf_debug uses
Just whitespace and argument alignment.
Introduce some checkpatch warnings that deserve to be ignored.
Reviewed-by: NamJae Jeon <linkinjeon@gmail.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/partition.c')
-rw-r--r-- | fs/udf/partition.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/udf/partition.c b/fs/udf/partition.c index c72edb2260e3..f3e472c67709 100644 --- a/fs/udf/partition.c +++ b/fs/udf/partition.c | |||
@@ -33,8 +33,8 @@ uint32_t udf_get_pblock(struct super_block *sb, uint32_t block, | |||
33 | struct udf_sb_info *sbi = UDF_SB(sb); | 33 | struct udf_sb_info *sbi = UDF_SB(sb); |
34 | struct udf_part_map *map; | 34 | struct udf_part_map *map; |
35 | if (partition >= sbi->s_partitions) { | 35 | if (partition >= sbi->s_partitions) { |
36 | udf_debug("block=%d, partition=%d, offset=%d: " | 36 | udf_debug("block=%d, partition=%d, offset=%d: invalid partition\n", |
37 | "invalid partition\n", block, partition, offset); | 37 | block, partition, offset); |
38 | return 0xFFFFFFFF; | 38 | return 0xFFFFFFFF; |
39 | } | 39 | } |
40 | map = &sbi->s_partmaps[partition]; | 40 | map = &sbi->s_partmaps[partition]; |
@@ -60,8 +60,8 @@ uint32_t udf_get_pblock_virt15(struct super_block *sb, uint32_t block, | |||
60 | vdata = &map->s_type_specific.s_virtual; | 60 | vdata = &map->s_type_specific.s_virtual; |
61 | 61 | ||
62 | if (block > vdata->s_num_entries) { | 62 | if (block > vdata->s_num_entries) { |
63 | udf_debug("Trying to access block beyond end of VAT " | 63 | udf_debug("Trying to access block beyond end of VAT (%d max %d)\n", |
64 | "(%d max %d)\n", block, vdata->s_num_entries); | 64 | block, vdata->s_num_entries); |
65 | return 0xFFFFFFFF; | 65 | return 0xFFFFFFFF; |
66 | } | 66 | } |
67 | 67 | ||