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

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
...@@ -39,7 +39,6 @@ int ssi_fips_get_state(enum cc_fips_state_t *p_state) ...@@ -39,7 +39,6 @@ int ssi_fips_get_state(enum cc_fips_state_t *p_state)
return rc; return rc;
} }
EXPORT_SYMBOL(ssi_fips_get_state); EXPORT_SYMBOL(ssi_fips_get_state);
/* /*
...@@ -57,5 +56,4 @@ int ssi_fips_get_error(enum cc_fips_error *p_err) ...@@ -57,5 +56,4 @@ int ssi_fips_get_error(enum cc_fips_error *p_err)
return rc; return rc;
} }
EXPORT_SYMBOL(ssi_fips_get_error); EXPORT_SYMBOL(ssi_fips_get_error);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment