From: Lanzhe Li Date: Sun, 9 Apr 2023 13:02:29 +0000 (+0800) Subject: Bluetooth: fix inconsistent indenting X-Git-Tag: v6.4-rc1~132^2~15^2~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c690a0d64f5964977050a91b6bba8de09c13d94;p=thirdparty%2Fkernel%2Flinux.git Bluetooth: fix inconsistent indenting Fixed a wrong indentation before "return".This line uses a 7 space indent instead of a tab. Signed-off-by: Lanzhe Li Signed-off-by: Luiz Augusto von Dentz --- diff --git a/net/bluetooth/hci_debugfs.c b/net/bluetooth/hci_debugfs.c index b7f682922a165..ec0df2f9188ed 100644 --- a/net/bluetooth/hci_debugfs.c +++ b/net/bluetooth/hci_debugfs.c @@ -189,7 +189,7 @@ static int uuids_show(struct seq_file *f, void *p) } hci_dev_unlock(hdev); - return 0; + return 0; } DEFINE_SHOW_ATTRIBUTE(uuids);