* [PATCH] staging: skein: fix sparse warning for static declarations
@ 2014-06-01 23:52 James A Shackleford
0 siblings, 0 replies; only message in thread
From: James A Shackleford @ 2014-06-01 23:52 UTC (permalink / raw)
To: gregkh, devel, linux-kernel; +Cc: James A Shackleford
This patch fixes the following sparse warnings:
skein_block.c:43:6: warning: symbol 'skein_256_process_block' was not declared. Should it be static?
skein_block.c:252:6: warning: symbol 'skein_512_process_block' was not declared. Should it be static?
skein_block.c:483:6: warning: symbol 'skein_1024_process_block' was not declared. Should it be static?
by including the header skein_block.h, which contains the declarations in
question.
Signed-off-by: James A Shackleford <shack@linux.com>
---
drivers/staging/skein/skein_block.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/staging/skein/skein_block.c b/drivers/staging/skein/skein_block.c
index f49eb2e..04ce1d0 100644
--- a/drivers/staging/skein/skein_block.c
+++ b/drivers/staging/skein/skein_block.c
@@ -16,6 +16,7 @@
#include <linux/string.h>
#include "skein.h"
+#include "skein_block.h"
#ifndef SKEIN_USE_ASM
#define SKEIN_USE_ASM (0) /* default is all C code (no ASM) */
--
1.7.9.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-06-01 23:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-01 23:52 [PATCH] staging: skein: fix sparse warning for static declarations James A Shackleford
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox