From: Zac Storer Date: Sun, 19 Jun 2011 09:23:20 +0000 (-0600) Subject: Staging: keucr: usb: fixed a brace coding style warning X-Git-Tag: next-20110726~5^2~242 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7d51b77ae10574c90a4dc01993458de3ce5cff16;p=karo-tx-linux.git Staging: keucr: usb: fixed a brace coding style warning Fixed a brace coding style warning. Signed-off-by: Zac Storer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/keucr/usb.c b/drivers/staging/keucr/usb.c index d8c5c626be5c..65cf2e3cd038 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);