staging: lustre: remove parentheses usage with return
authorSrikrishan Malik <srikrishanmalik@gmail.com>
Mon, 11 Aug 2014 18:27:38 +0000 (23:57 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:18 +0000 (12:23 -0700)
Fix the following checkpatch error:

ERROR: return is not a function, parentheses are not required

Signed-off-by: Srikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/mdc/mdc_request.c

index ffe9e3dd74e675d2a3d8da51359fa64edfdfaa22..57f4952f6391ac3151069840f459eae9985b5796 100644 (file)
@@ -2588,7 +2588,7 @@ static int mdc_process_config(struct obd_device *obd, obd_count len, void *buf)
                        rc = 0;
                break;
        }
-       return(rc);
+       return rc;
 }
 
 
This page took 0.026362 seconds and 5 git commands to generate.