]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
usb: sl811-hcd: improve misleading indentation
authorArnd Bergmann <arnd@arndb.de>
Mon, 22 Mar 2021 16:42:26 +0000 (17:42 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Mar 2021 11:38:11 +0000 (12:38 +0100)
gcc-11 now warns about a confusingly indented code block:

drivers/usb/host/sl811-hcd.c: In function ‘sl811h_hub_control’:
drivers/usb/host/sl811-hcd.c:1291:9: error: this ‘if’ clause does not guard... [-Werror=misleading-indentation]
 1291 |         if (*(u16*)(buf+2))     /* only if wPortChange is interesting */
      |         ^~
drivers/usb/host/sl811-hcd.c:1295:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
 1295 |                 break;

Rewrite this to use a single if() block with the __is_defined() macro.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20210322164244.827589-1-arnd@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/sl811-hcd.c

index d49fb656d34b8f72e0dd81b58b14a4b5635355e3..85623731a51626daa004eed6f2830abb77ddbfa3 100644 (file)
@@ -1287,11 +1287,10 @@ sl811h_hub_control(
                        goto error;
                put_unaligned_le32(sl811->port1, buf);
 
-#ifndef        VERBOSE
-       if (*(u16*)(buf+2))     /* only if wPortChange is interesting */
-#endif
-               dev_dbg(hcd->self.controller, "GetPortStatus %08x\n",
-                       sl811->port1);
+               if (__is_defined(VERBOSE) ||
+                   *(u16*)(buf+2)) /* only if wPortChange is interesting */
+                       dev_dbg(hcd->self.controller, "GetPortStatus %08x\n",
+                               sl811->port1);
                break;
        case SetPortFeature:
                if (wIndex != 1 || wLength != 0)