diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-05 13:11:28 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-05-26 19:51:09 +0200 |
commit | 314c926f64b345f153b9180a2c79333657dbec48 (patch) | |
tree | 20c4d06301f0bea10a4a4b23306595e0378621f1 /arch/m68k/amiga | |
parent | 5121c7172d7d9bec33535e098c9487cf4e8186f2 (diff) | |
download | op-kernel-dev-314c926f64b345f153b9180a2c79333657dbec48.zip op-kernel-dev-314c926f64b345f153b9180a2c79333657dbec48.tar.gz |
m68k: amiga - Mouse platform device conversion
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/amiga')
-rw-r--r-- | arch/m68k/amiga/platform.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index d427de2..269bafc 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c @@ -165,6 +165,9 @@ static int __init amiga_init_devices(void) if (AMIGAHW_PRESENT(AMI_KEYBOARD)) platform_device_register_simple("amiga-keyboard", -1, NULL, 0); + if (AMIGAHW_PRESENT(AMI_MOUSE)) + platform_device_register_simple("amiga-mouse", -1, NULL, 0); + return 0; } |