From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933139AbdCaKO1 (ORCPT ); Fri, 31 Mar 2017 06:14:27 -0400 Received: from terminus.zytor.com ([65.50.211.136]:50221 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932342AbdCaKOZ (ORCPT ); Fri, 31 Mar 2017 06:14:25 -0400 Date: Fri, 31 Mar 2017 03:08:52 -0700 From: tip-bot for Zhengyi Shen Message-ID: Cc: hpa@zytor.com, mingo@kernel.org, torvalds@linux-foundation.org, keescook@chromium.org, peterz@infradead.org, tglx@linutronix.de, shenzhengyi@gmail.com, linux-kernel@vger.kernel.org Reply-To: torvalds@linux-foundation.org, hpa@zytor.com, mingo@kernel.org, tglx@linutronix.de, peterz@infradead.org, shenzhengyi@gmail.com, linux-kernel@vger.kernel.org, keescook@chromium.org In-Reply-To: <1490770820-24472-1-git-send-email-shenzhengyi@gmail.com> References: <1490770820-24472-1-git-send-email-shenzhengyi@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/boot] x86/boot: Fix Sparse warning by including required header file Git-Commit-ID: 5af218439f3a4c9ca7139a40e5d047fe1ea39551 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 5af218439f3a4c9ca7139a40e5d047fe1ea39551 Gitweb: http://git.kernel.org/tip/5af218439f3a4c9ca7139a40e5d047fe1ea39551 Author: Zhengyi Shen AuthorDate: Wed, 29 Mar 2017 15:00:20 +0800 Committer: Ingo Molnar CommitDate: Fri, 31 Mar 2017 08:13:54 +0200 x86/boot: Fix Sparse warning by including required header file 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 Cc: Kees Cook Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1490770820-24472-1-git-send-email-shenzhengyi@gmail.com [ Fixed/enhanced the changelog. ] Signed-off-by: Ingo Molnar --- arch/x86/boot/compressed/error.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/boot/compressed/error.c b/arch/x86/boot/compressed/error.c index 6248740..3192202 100644 --- a/arch/x86/boot/compressed/error.c +++ b/arch/x86/boot/compressed/error.c @@ -4,6 +4,7 @@ * memcpy() and memmove() are defined for the compressed boot environment. */ #include "misc.h" +#include "error.h" void warn(char *m) {