From: Srikrishan Malik Date: Mon, 11 Aug 2014 18:27:38 +0000 (+0530) Subject: staging: lustre: remove parentheses usage with return X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=eb44520b3ad9407704dd111c9acd48911c83beba;p=deliverable%2Flinux.git staging: lustre: remove parentheses usage with return Fix the following checkpatch error: ERROR: return is not a function, parentheses are not required Signed-off-by: Srikrishan Malik Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/mdc/mdc_request.c b/drivers/staging/lustre/lustre/mdc/mdc_request.c index ffe9e3dd74e6..57f4952f6391 100644 --- a/drivers/staging/lustre/lustre/mdc/mdc_request.c +++ b/drivers/staging/lustre/lustre/mdc/mdc_request.c @@ -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; }