Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1699845
| From | RishabhHardas <rishabheudyptula@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] staging/ccree: Declare compiled out fuctions static inline |
| Date | 2017-07-31 11:20 +0200 |
| Message-ID | <u9f1M-4rg-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: RishabhHardas <rishabhhardas@gmail.com>
Sparse was giving out a warning for symbols 'cc_set_ree_fips_status' and 'fips_handler'
that they were not declared and need to be made static. This patch makes both the symbols
static inline, to remove the warnings.
Signed-off-by: RishabhHardas <rishabhhardas@gmail.com>
---
drivers/staging/ccree/ssi_fips.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/ccree/ssi_fips.h b/drivers/staging/ccree/ssi_fips.h
index 369ddf9..63bcca7 100644
--- a/drivers/staging/ccree/ssi_fips.h
+++ b/drivers/staging/ccree/ssi_fips.h
@@ -40,1 +40,1 @@ static inline int ssi_fips_init(struct ssi_drvdata *p_drvdata)
}
static inline void ssi_fips_fini(struct ssi_drvdata *drvdata) {}
-void cc_set_ree_fips_status(struct ssi_drvdata *drvdata, bool ok) {}
-void fips_handler(struct ssi_drvdata *drvdata) {}
+static inline void cc_set_ree_fips_status(struct ssi_drvdata *drvdata, bool ok) {}
+static inline void fips_handler(struct ssi_drvdata *drvdata) {}
#endif /* CONFIG_CRYPTO_FIPS */
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] staging/ccree: Declare compiled out fuctions static inline RishabhHardas <rishabheudyptula@gmail.com> - 2017-07-31 11:20 +0200 Re: [PATCH] staging/ccree: Declare compiled out fuctions static inline Gilad Ben-Yossef <gilad@benyossef.com> - 2017-08-01 14:40 +0200
csiph-web