From: Alberto Pires de Oliveira Neto Date: Tue, 17 Mar 2015 01:21:09 +0000 (-0300) Subject: staging: lustre: void function return statements are not generally useful. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0effc8eb9462b2135b44f9758b4f4455ed85e903;p=deliverable%2Flinux.git staging: lustre: void function return statements are not generally useful. This patch fixes checkpatch.pl warning. WARNING: void function return statements are not generally useful Signed-off-by: Alberto Pires de Oliveira Neto Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/fld/fld_request.c b/drivers/staging/lustre/lustre/fld/fld_request.c index 22e0d94bb0f8..6ac225e90ee0 100644 --- a/drivers/staging/lustre/lustre/fld/fld_request.c +++ b/drivers/staging/lustre/lustre/fld/fld_request.c @@ -326,7 +326,6 @@ static int fld_client_proc_init(struct lu_client_fld *fld) void fld_client_proc_fini(struct lu_client_fld *fld) { - return; } #endif EXPORT_SYMBOL(fld_client_proc_fini);