projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78178c7
)
x86, platform: Export x86_platform to modules
author
H. Peter Anvin
<
[email protected]
>
Wed, 7 Jul 2010 23:57:46 +0000
(16:57 -0700)
committer
H. Peter Anvin
<
[email protected]
>
Thu, 8 Jul 2010 00:05:05 +0000
(17:05 -0700)
Export x86_platform to modules in preparation of using it for i8042
discovery control.
Signed-off-by: H. Peter Anvin <
[email protected]
>
LKML-Reference: <
1278342202
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc: Feng Tang <
[email protected]
>
Cc: Dmitry Torokhov <
[email protected]
>
arch/x86/kernel/x86_init.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/x86_init.c
b/arch/x86/kernel/x86_init.c
index 61a1e8c7e19f8169e736bd329e9b2b72c87c3cce..ebfb8e4c9f224d30069485c5fa5f72838dd1dd95 100644
(file)
--- a/
arch/x86/kernel/x86_init.c
+++ b/
arch/x86/kernel/x86_init.c
@@
-5,6
+5,7
@@
*/
#include <linux/init.h>
#include <linux/ioport.h>
+#include <linux/module.h>
#include <asm/bios_ebda.h>
#include <asm/paravirt.h>
@@
-94,3
+95,5
@@
struct x86_platform_ops x86_platform = {
.is_untracked_pat_range = is_ISA_range,
.nmi_init = default_nmi_init
};
+
+EXPORT_SYMBOL_GPL(x86_platform);