From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755291AbdCGLq4 (ORCPT ); Tue, 7 Mar 2017 06:46:56 -0500 Received: from terminus.zytor.com ([65.50.211.136]:39244 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754576AbdCGLqb (ORCPT ); Tue, 7 Mar 2017 06:46:31 -0500 Date: Tue, 7 Mar 2017 01:06:21 -0800 From: tip-bot for Guenter Roeck Message-ID: Cc: ysato@users.sourceforge.jp, linux-kernel@vger.kernel.org, linux@roeck-us.net, mingo@kernel.org, peterz@infradead.org, torvalds@linux-foundation.org, hpa@zytor.com, tglx@linutronix.de Reply-To: linux@roeck-us.net, mingo@kernel.org, linux-kernel@vger.kernel.org, ysato@users.sourceforge.jp, hpa@zytor.com, tglx@linutronix.de, torvalds@linux-foundation.org, peterz@infradead.org In-Reply-To: <1488738434-3504-1-git-send-email-linux@roeck-us.net> References: <1488738434-3504-1-git-send-email-linux@roeck-us.net> To: linux-tip-commits@vger.kernel.org Subject: [tip:core/urgent] h8300: Fix build breakage caused by header file changes Git-Commit-ID: 80aa1a54f054a1c71cc88e0cad6cfa0d20a10f23 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: 80aa1a54f054a1c71cc88e0cad6cfa0d20a10f23 Gitweb: http://git.kernel.org/tip/80aa1a54f054a1c71cc88e0cad6cfa0d20a10f23 Author: Guenter Roeck AuthorDate: Sun, 5 Mar 2017 10:27:14 -0800 Committer: Ingo Molnar CommitDate: Tue, 7 Mar 2017 08:35:49 +0100 h8300: Fix build breakage caused by header file changes Fix the following h8300 build failures: arch/h8300/kernel/ptrace_h.c: In function ‘trace_trap’: arch/h8300/kernel/ptrace_h.c:253:3: error: implicit declaration of function ‘force_sig’ Signed-off-by: Guenter Roeck Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: Yoshinori Sato Cc: uclinux-h8-devel@lists.sourceforge.jp Fixes: c3edc4010e9d ("sched/headers: Move task_struct::signal and ...") Link: http://lkml.kernel.org/r/1488738434-3504-1-git-send-email-linux@roeck-us.net Signed-off-by: Ingo Molnar --- arch/h8300/kernel/ptrace_h.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/h8300/kernel/ptrace_h.c b/arch/h8300/kernel/ptrace_h.c index fe3b567..f5ff3b7 100644 --- a/arch/h8300/kernel/ptrace_h.c +++ b/arch/h8300/kernel/ptrace_h.c @@ -9,7 +9,7 @@ */ #include -#include +#include #include #define BREAKINST 0x5730 /* trapa #3 */