]> Git Repo - linux.git/commitdiff
x86/boot: Fix Sparse warning by including required header file
authorZhengyi Shen <[email protected]>
Wed, 29 Mar 2017 07:00:20 +0000 (15:00 +0800)
committerIngo Molnar <[email protected]>
Fri, 31 Mar 2017 06:13:54 +0000 (08:13 +0200)
Include declarations for various symbols defined in the error.h header file
to fix the following Sparse warnings:

  arch/x86/boot/compressed/error.c:8:6:
warning: symbol 'warn' was not declared. Should it be static?
  arch/x86/boot/compressed/error.c:15:6:
warning: symbol 'error' was not declared. Should it be static?

Signed-off-by: Zhengyi Shen <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
[ Fixed/enhanced the changelog. ]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/boot/compressed/error.c

index 6248740b68b5a0c71bddf6eb29e4c6898902d471..31922023de49281d44f7fe893099935a594f5456 100644 (file)
@@ -4,6 +4,7 @@
  * memcpy() and memmove() are defined for the compressed boot environment.
  */
 #include "misc.h"
+#include "error.h"
 
 void warn(char *m)
 {
This page took 0.059688 seconds and 4 git commands to generate.