diff options
author | Matthias Beyer <mail@beyermatthias.de> | 2013-10-10 23:41:27 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-11 17:02:37 -0700 |
commit | 469271f8c48f12efc63a49b5bb388a754c957a0b (patch) | |
tree | 8e7370505fa64cc71c30cac105ef4443009580a7 /drivers/usb/core/usb.c | |
parent | a91ccd26e75235d86248d018fe3779732bcafd8d (diff) | |
download | talos-obmc-linux-469271f8c48f12efc63a49b5bb388a754c957a0b.tar.gz talos-obmc-linux-469271f8c48f12efc63a49b5bb388a754c957a0b.zip |
drivers: usb: core: {file,hub,sysfs,usb}.c: Whitespace fixes
including:
- removing of trailing whitespace
- removing spaces before array indexing (foo [] to foo[])
- reindention of a switch-case block
- spaces to tabs
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/usb.c')
-rw-r--r-- | drivers/usb/core/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c index 0a6ee2e70b25..4d1144990d4c 100644 --- a/drivers/usb/core/usb.c +++ b/drivers/usb/core/usb.c @@ -497,7 +497,7 @@ struct usb_device *usb_alloc_dev(struct usb_device *parent, dev->authorized = 1; else { dev->authorized = usb_hcd->authorized_default; - dev->wusb = usb_bus_is_wusb(bus)? 1 : 0; + dev->wusb = usb_bus_is_wusb(bus) ? 1 : 0; } return dev; } |