Commit 62fcd589 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Greg Kroah-Hartman
Browse files

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: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b0e7d960
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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);