* [PATCH] x86: ce4100: add head file for reboot type
@ 2013-07-09 3:06 Xiong Zhou
2013-07-12 3:47 ` Xiong Zhou
2013-07-12 13:28 ` [tip:x86/urgent] x86/platform/ce4100: Add header " tip-bot for Xiong Zhou
0 siblings, 2 replies; 3+ messages in thread
From: Xiong Zhou @ 2013-07-09 3:06 UTC (permalink / raw)
To: tglx, matthew.garrett
Cc: platform-driver-x86, linux-next, linux-kernel, mingo, x86,
rui.zhang, alan, ffainelli, mingo, mbizon
[-- Attachment #1: Type: TEXT/PLAIN, Size: 724 bytes --]
From: Xiong Zhou <jencce.kernel@gmail.com>
Add head file for reboot type stuff to fix this:
error: ‘reboot_type’ undeclared (first use in this function)
error: ‘BOOT_KBD’ undeclared (first use in this function)
Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
---
arch/x86/platform/ce4100/ce4100.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/platform/ce4100/ce4100.c b/arch/x86/platform/ce4100/ce4100.c
index baec704..643b8b5e 100644
--- a/arch/x86/platform/ce4100/ce4100.c
+++ b/arch/x86/platform/ce4100/ce4100.c
@@ -14,6 +14,7 @@
#include <linux/module.h>
#include <linux/serial_reg.h>
#include <linux/serial_8250.h>
+#include <linux/reboot.h>
#include <asm/ce4100.h>
#include <asm/prom.h>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] x86: ce4100: add head file for reboot type
2013-07-09 3:06 [PATCH] x86: ce4100: add head file for reboot type Xiong Zhou
@ 2013-07-12 3:47 ` Xiong Zhou
2013-07-12 13:28 ` [tip:x86/urgent] x86/platform/ce4100: Add header " tip-bot for Xiong Zhou
1 sibling, 0 replies; 3+ messages in thread
From: Xiong Zhou @ 2013-07-12 3:47 UTC (permalink / raw)
To: tglx, matthew.garrett
Cc: platform-driver-x86, Linux-Next, linux-kernel, mingo, x86,
rui.zhang, alan, ffainelli, mingo, mbizon, Jiri Kosina
2013/7/9 Xiong Zhou <jencce.kernel@gmail.com>:
> From: Xiong Zhou <jencce.kernel@gmail.com>
>
> Add head file for reboot type stuff to fix this:
> error: ‘reboot_type’ undeclared (first use in this function)
> error: ‘BOOT_KBD’ undeclared (first use in this function)
>
> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
> ---
> arch/x86/platform/ce4100/ce4100.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/x86/platform/ce4100/ce4100.c b/arch/x86/platform/ce4100/ce4100.c
> index baec704..643b8b5e 100644
> --- a/arch/x86/platform/ce4100/ce4100.c
> +++ b/arch/x86/platform/ce4100/ce4100.c
> @@ -14,6 +14,7 @@
> #include <linux/module.h>
> #include <linux/serial_reg.h>
> #include <linux/serial_8250.h>
> +#include <linux/reboot.h>
>
> #include <asm/ce4100.h>
> #include <asm/prom.h>
cc Jiri Kosina <trivial@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:x86/urgent] x86/platform/ce4100: Add header file for reboot type
2013-07-09 3:06 [PATCH] x86: ce4100: add head file for reboot type Xiong Zhou
2013-07-12 3:47 ` Xiong Zhou
@ 2013-07-12 13:28 ` tip-bot for Xiong Zhou
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Xiong Zhou @ 2013-07-12 13:28 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, jencce.kernel, tglx
Commit-ID: ff5599816711d2e67da2d7561fd36ac48debd433
Gitweb: http://git.kernel.org/tip/ff5599816711d2e67da2d7561fd36ac48debd433
Author: Xiong Zhou <jencce.kernel@gmail.com>
AuthorDate: Tue, 9 Jul 2013 11:06:27 +0800
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Fri, 12 Jul 2013 12:21:20 +0200
x86/platform/ce4100: Add header file for reboot type
Add header file for reboot type to fix this build failure:
error: 'reboot_type' undeclared (first use in this function)
error: 'BOOT_KBD' undeclared (first use in this function)
Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
Cc: rui.zhang@intel.com
Cc: alan@linux.intel.com
Cc: ffainelli@freebox.fr
Cc: mbizon@freebox.fr
Cc: matthew.garrett@nebula.com
Link: http://lkml.kernel.org/r/alpine.DEB.2.02.1307091053280.28371@M2420
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
arch/x86/platform/ce4100/ce4100.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/x86/platform/ce4100/ce4100.c b/arch/x86/platform/ce4100/ce4100.c
index f8ab494..9962015 100644
--- a/arch/x86/platform/ce4100/ce4100.c
+++ b/arch/x86/platform/ce4100/ce4100.c
@@ -14,6 +14,7 @@
#include <linux/module.h>
#include <linux/serial_reg.h>
#include <linux/serial_8250.h>
+#include <linux/reboot.h>
#include <asm/ce4100.h>
#include <asm/prom.h>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-12 13:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-09 3:06 [PATCH] x86: ce4100: add head file for reboot type Xiong Zhou
2013-07-12 3:47 ` Xiong Zhou
2013-07-12 13:28 ` [tip:x86/urgent] x86/platform/ce4100: Add header " tip-bot for Xiong Zhou
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®