aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-08-06 22:49:20 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-08-06 22:49:20 -0400
commitee110066130b79b7abf63bbd836d382699252b81 (patch)
tree2bada434f7230d1aed8ca60867a0e85522d9bd6e /arch
parent949ad0a783729ad8c2e8e5bcbbad5d05a60de616 (diff)
powerpc: fix i8042 module build error
of_i8042_{kbd,aux}_irq needs to be exported Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/kernel/setup-common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c
index 15ade0d7bbb..9d4882a4664 100644
--- a/arch/powerpc/kernel/setup-common.c
+++ b/arch/powerpc/kernel/setup-common.c
@@ -96,7 +96,9 @@ struct screen_info screen_info = {
96 96
97/* Variables required to store legacy IO irq routing */ 97/* Variables required to store legacy IO irq routing */
98int of_i8042_kbd_irq; 98int of_i8042_kbd_irq;
99EXPORT_SYMBOL_GPL(of_i8042_kbd_irq);
99int of_i8042_aux_irq; 100int of_i8042_aux_irq;
101EXPORT_SYMBOL_GPL(of_i8042_aux_irq);
100 102
101#ifdef __DO_IRQ_CANON 103#ifdef __DO_IRQ_CANON
102/* XXX should go elsewhere eventually */ 104/* XXX should go elsewhere eventually */