OSDN Git Service

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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 Aug 2019 16:29:40 +0000 (18:29 +0200)
commitb2ca435ce65e5f1016d5ae698cb71c9c436ea3fb
treea77d8b5f574eace904f74070f227cdb6a5a34c35
parent4d2bf5798ebf009fa1c82aeb87986da7fc10efe0
x86, boot: Remove multiple copy of static function sanitize_boot_params()

[ Upstream commit 8c5477e8046ca139bac250386c08453da37ec1ae ]

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
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/boot/compressed/misc.c
arch/x86/boot/compressed/misc.h