]> git.proxmox.com Git - mirror_ubuntu-eoan-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)
committerKhalid Elmously <khalid.elmously@canonical.com>
Fri, 14 Feb 2020 06:00:53 +0000 (01:00 -0500)
commit4eb1bb386aba00f55f91d2b89a1bee46bfcf3c5f
treea5b66ed1c3a2488a53e21c207c6dfccd48562f15
parent36ab63a76f804fe91ffa0593cddf667972a9909b
xen/blkfront: Adjust indentation in xlvbd_alloc_gendisk

BugLink: https://bugs.launchpad.net/bugs/1862429
commit 589b72894f53124a39d1bb3c0cecaf9dcabac417 upstream.

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: c80a420995e7 ("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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
drivers/block/xen-blkfront.c