x86, boot: Remove multiple copy of static function sanitize_boot_params()
authorZhenzhong Duan <zhenzhong.duan@oracle.com>
Tue, 16 Jul 2019 13:18:12 +0000 (21:18 +0800)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 18 Jul 2019 19:41:57 +0000 (21:41 +0200)
Kernel build warns:
 'sanitize_boot_params' defined but not used [-Wunused-function]

at below files:
  arch/x86/boot/compressed/cmdline.c
  arch/x86/boot/compressed/error.c
  arch/x86/boot/compressed/early_serial_console.c
  arch/x86/boot/compressed/acpi.c

That's becausethey each include misc.h which includes a definition of
sanitize_boot_params() via bootparam_utils.h.

Remove the inclusion from misc.h and have the c file including
bootparam_utils.h directly.

Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/1563283092-1189-1-git-send-email-zhenzhong.duan@oracle.com
arch/x86/boot/compressed/misc.c
arch/x86/boot/compressed/misc.h

index 24e65a0..53ac0cb 100644 (file)
@@ -17,6 +17,7 @@
 #include "pgtable.h"
 #include "../string.h"
 #include "../voffset.h"
+#include <asm/bootparam_utils.h>
 
 /*
  * WARNING!!
index d2f1841..c818139 100644 (file)
@@ -23,7 +23,6 @@
 #include <asm/page.h>
 #include <asm/boot.h>
 #include <asm/bootparam.h>
-#include <asm/bootparam_utils.h>
 
 #define BOOT_CTYPE_H
 #include <linux/acpi.h>