diff options
author | Grant Likely | 2010-08-07 04:49:20 +0200 |
---|---|---|
committer | Grant Likely | 2010-08-07 04:49:20 +0200 |
commit | ee110066130b79b7abf63bbd836d382699252b81 (patch) | |
tree | 2bada434f7230d1aed8ca60867a0e85522d9bd6e /arch/powerpc | |
parent | sound/soc: mpc5200_psc_ac97: Use gpio pins for cold reset (diff) | |
download | kernel-qcow2-linux-ee110066130b79b7abf63bbd836d382699252b81.tar.gz kernel-qcow2-linux-ee110066130b79b7abf63bbd836d382699252b81.tar.xz kernel-qcow2-linux-ee110066130b79b7abf63bbd836d382699252b81.zip |
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/powerpc')
-rw-r--r-- | arch/powerpc/kernel/setup-common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 15ade0d7bbb2..9d4882a46647 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c @@ -96,7 +96,9 @@ struct screen_info screen_info = { /* Variables required to store legacy IO irq routing */ int of_i8042_kbd_irq; +EXPORT_SYMBOL_GPL(of_i8042_kbd_irq); int of_i8042_aux_irq; +EXPORT_SYMBOL_GPL(of_i8042_aux_irq); #ifdef __DO_IRQ_CANON /* XXX should go elsewhere eventually */ |