diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-05 12:59:54 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-05-17 21:37:44 +0200 |
commit | ff2db7c5ab78817eb3c5d15dd87f18e9be726f1a (patch) | |
tree | bc2b06c1f12c57389d85a2c515be8101261c27d7 /arch/m68k | |
parent | fa6688e1c7e7341fb7d1ca5878a3641762e60dec (diff) |
m68k: amiga - Sound platform device conversion
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/amiga/platform.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 7fa929cf9a3a..2e308e7a0949 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c @@ -67,6 +67,11 @@ static int __init amiga_init_devices(void) if (AMIGAHW_PRESENT(AMI_VIDEO)) platform_device_register_simple("amiga-video", -1, NULL, 0); + + /* sound hardware */ + if (AMIGAHW_PRESENT(AMI_AUDIO)) + platform_device_register_simple("amiga-audio", -1, NULL, 0); + return 0; } |