Staging:lustre:lustre:obdclass:Remove return from void function

This patch removes the return statement at the end of a void function as
it is not necessary.This was found by checkpatch.pl .

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bhumika Goyal 2016-01-15 11:32:11 +05:30 committed by Greg Kroah-Hartman
parent b0e7d96088
commit 62fcd58943
1 changed files with 0 additions and 2 deletions

View File

@ -406,7 +406,5 @@ void lustre_swab_cfg_marker(struct cfg_marker *marker, int swab, int size)
__swab64s(&marker->cm_createtime);
__swab64s(&marker->cm_canceltime);
}
return;
}
EXPORT_SYMBOL(lustre_swab_cfg_marker);