Staging: keucr: Coding style fixes in scsiglue.c
authorRuslan Pisarev <ruslan@rpisarev.org.ua>
Fri, 22 Jul 2011 11:16:48 +0000 (14:16 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 23 Aug 2011 21:38:44 +0000 (14:38 -0700)
Fixed macros in scsiglue.c

Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/keucr/scsiglue.c

index 135f7f21dfde13a4d345e0f868dbeac943a3a3a9..e1f3931d41e0c9b24ee75c5ea10506e5ae320ed8 100644 (file)
@@ -144,7 +144,7 @@ static int command_abort(struct scsi_cmnd *srb)
        scsi_lock(us_to_host(us));
        if (us->srb != srb) {
                scsi_unlock(us_to_host(us));
-               printk ("-- nothing to abort\n");
+               printk("-- nothing to abort\n");
                return FAILED;
        }
 
@@ -279,7 +279,8 @@ static int proc_info(struct Scsi_Host *host, char *buffer, char **start,
                pos += sprintf(pos, "       Quirks:");
 
 #define US_FLAG(name, value) \
-       if (us->fflags & value) pos += sprintf(pos, " " #name);
+       if (us->fflags & value)\
+               pos += sprintf(pos, " " #name);
 US_DO_ALL_FLAGS
 #undef US_FLAG
 
This page took 0.030816 seconds and 5 git commands to generate.