]> git.baikalelectronics.ru Git - kernel.git/commit
xen/blkfront: Adjust indentation in xlvbd_alloc_gendisk
authorNathan Chancellor <natechancellor@gmail.com>
Mon, 9 Dec 2019 20:14:44 +0000 (13:14 -0700)
committerJuergen Gross <jgross@suse.com>
Fri, 20 Dec 2019 12:38:13 +0000 (13:38 +0100)
commit26db3676c71aa41b5164e1d1859bb83a610af9ae
tree62143651e4942457d3fc7103cea46df823907baa
parent38fc2698825da5188c54d2dd1106e096ab6a5cd3
xen/blkfront: Adjust indentation in xlvbd_alloc_gendisk

Clang warns:

../drivers/block/xen-blkfront.c:1117:4: warning: misleading indentation;
statement is not part of the previous 'if' [-Wmisleading-indentation]
                nr_parts = PARTS_PER_DISK;
                ^
../drivers/block/xen-blkfront.c:1115:3: note: previous statement is here
                if (err)
                ^

This is because there is a space at the beginning of this line; remove
it so that the indentation is consistent according to the Linux kernel
coding style and clang no longer warns.

While we are here, the previous line has some trailing whitespace; clean
that up as well.

Fixes: 593dca8752cc ("xen-blkfront: handle Xen major numbers other than XENVBD")
Link: https://github.com/ClangBuiltLinux/linux/issues/791
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/block/xen-blkfront.c