[PATCH] Staging: keucr: usb: fixed a brace coding style warning

Zac Storer zac.3.14159 at gmail.com
Sun Jun 19 09:23:20 UTC 2011


Fixed a brace coding style warning.

Signed-off-by: Zac Storer <zac.3.14159 at gmail.com>
---
 drivers/staging/keucr/usb.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/keucr/usb.c b/drivers/staging/keucr/usb.c
index d8c5c62..65cf2e3 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);
-- 
1.7.4.1




More information about the devel mailing list