Commit 9c0d8723 authored by Tyler Olivieri's avatar Tyler Olivieri Committed by Greg Kroah-Hartman
Browse files

staging: ccree: export symbol immediately following function



Patch to fix following checkpatch warning:
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable

Signed-off-by: default avatarTyler Olivieri <sleepingzucchini@gmail.com>
Acked-by: default avatarGilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 462ba38c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@ int ssi_fips_get_state(enum cc_fips_state_t *p_state)

	return rc;
}

EXPORT_SYMBOL(ssi_fips_get_state);

/*
@@ -57,5 +56,4 @@ int ssi_fips_get_error(enum cc_fips_error *p_err)

	return rc;
}

EXPORT_SYMBOL(ssi_fips_get_error);