From: Tyler Olivieri Date: Sun, 9 Jul 2017 21:10:46 +0000 (-0400) Subject: staging: ccree: export symbol immediately following function X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=9c0d87230bde794f2543b95ba93c1840a938119b;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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: Tyler Olivieri Acked-by: Gilad Ben-Yossef Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ccree/ssi_fips.c b/drivers/staging/ccree/ssi_fips.c index fdc40f38332a..523057c4d791 100644 --- a/drivers/staging/ccree/ssi_fips.c +++ b/drivers/staging/ccree/ssi_fips.c @@ -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);