Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1592901 > unrolled thread

[PATCH] char: nwbutton: Fix build breakage caused by include file reshuffling

Started byGuenter Roeck <linux@roeck-us.net>
First post2017-03-06 04:10 +0100
Last post2017-03-07 10:50 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] char: nwbutton: Fix build breakage caused by include file reshuffling Guenter Roeck <linux@roeck-us.net> - 2017-03-06 04:10 +0100
    [tip:core/urgent] drivers/char/nwbutton: Fix build breakage caused  by include file reshuffling tip-bot for Guenter Roeck <tipbot@zytor.com> - 2017-03-07 10:50 +0100

#1592901 — [PATCH] char: nwbutton: Fix build breakage caused by include file reshuffling

FromGuenter Roeck <linux@roeck-us.net>
Date2017-03-06 04:10 +0100
Subject[PATCH] char: nwbutton: Fix build breakage caused by include file reshuffling
Message-ID<thRc6-1Dq-3@gated-at.bofh.it>
Fix:

drivers/char/nwbutton.c: In function 'button_sequence_finished':
drivers/char/nwbutton.c:134:3: error:
	implicit declaration of function 'kill_cad_pid'

The declaration has been moved from one include file to another.

Fixes: c3edc4010e9d102 ("sched/headers: Move task_struct::signal and ...")
Cc: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 drivers/char/nwbutton.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/nwbutton.c b/drivers/char/nwbutton.c
index a5b1eb276c0b..e6d0d271c58c 100644
--- a/drivers/char/nwbutton.c
+++ b/drivers/char/nwbutton.c
@@ -6,7 +6,7 @@
 
 #include <linux/module.h>
 #include <linux/kernel.h>
-#include <linux/sched.h>
+#include <linux/sched/signal.h>
 #include <linux/interrupt.h>
 #include <linux/time.h>
 #include <linux/timer.h>
-- 
2.7.4

[toc] | [next] | [standalone]


#1594051 — [tip:core/urgent] drivers/char/nwbutton: Fix build breakage caused by include file reshuffling

Fromtip-bot for Guenter Roeck <tipbot@zytor.com>
Date2017-03-07 10:50 +0100
Subject[tip:core/urgent] drivers/char/nwbutton: Fix build breakage caused by include file reshuffling
Message-ID<tijUK-5z1-9@gated-at.bofh.it>
In reply to#1592901
Commit-ID:  bb35e4515411396219431fa235bf21bf9c2794e9
Gitweb:     http://git.kernel.org/tip/bb35e4515411396219431fa235bf21bf9c2794e9
Author:     Guenter Roeck <linux@roeck-us.net>
AuthorDate: Sun, 5 Mar 2017 17:13:31 -0800
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Tue, 7 Mar 2017 08:35:49 +0100

drivers/char/nwbutton: Fix build breakage caused by include file reshuffling

Fix:

  drivers/char/nwbutton.c: In function 'button_sequence_finished':
  drivers/char/nwbutton.c:134:3: error: implicit declaration of function 'kill_cad_pid'

The declaration has been moved from one include file to another.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: c3edc4010e9d102 ("sched/headers: Move task_struct::signal and ...")
Link: http://lkml.kernel.org/r/1488762811-9022-1-git-send-email-linux@roeck-us.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 drivers/char/nwbutton.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/char/nwbutton.c b/drivers/char/nwbutton.c
index a5b1eb2..e6d0d27 100644
--- a/drivers/char/nwbutton.c
+++ b/drivers/char/nwbutton.c
@@ -6,7 +6,7 @@
 
 #include <linux/module.h>
 #include <linux/kernel.h>
-#include <linux/sched.h>
+#include <linux/sched/signal.h>
 #include <linux/interrupt.h>
 #include <linux/time.h>
 #include <linux/timer.h>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web