aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/keucr
diff options
context:
space:
mode:
authorZac Storer <zac.3.14159@gmail.com>2011-06-19 03:23:20 -0600
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-05 10:20:24 -0700
commit7d51b77ae10574c90a4dc01993458de3ce5cff16 (patch)
tree63e74bdb3e56259c7ef587f5b1f0b2999bc3dc93 /drivers/staging/keucr
parent1c50bf7e415cf6ce9545dbecc2ac0d89d3916c53 (diff)
Staging: keucr: usb: fixed a brace coding style warning
Fixed a brace coding style warning. Signed-off-by: Zac Storer <zac.3.14159@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/keucr')
-rw-r--r--drivers/staging/keucr/usb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/keucr/usb.c b/drivers/staging/keucr/usb.c
index d8c5c626be5..65cf2e3cd03 100644
--- a/drivers/staging/keucr/usb.c
+++ b/drivers/staging/keucr/usb.c
@@ -640,8 +640,7 @@ static int eucr_probe(struct usb_interface *intf, const struct usb_device_id *id
/* Start up the thread for delayed SCSI-device scanning */
th = kthread_create(usb_stor_scan_thread, us, "eucr-stor-scan");
- if (IS_ERR(th))
- {
+ if (IS_ERR(th)) {
pr_info("Unable to start the device-scanning thread\n");
complete(&us->scanning_done);
quiesce_and_remove_host(us);