diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-05 06:45:56 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-05-17 15:37:43 -0400 |
commit | fa6688e1c7e7341fb7d1ca5878a3641762e60dec (patch) | |
tree | fee19a4b0ade07bb2de1848ea75c29950599d5b0 /arch/m68k | |
parent | 0d305464aefff342c85b4db8b3d7a4345246e5a1 (diff) |
m68k: amiga - Frame buffer 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 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 33a7669b4415..7fa929cf9a3a 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c | |||
@@ -56,3 +56,18 @@ static int __init amiga_init_bus(void) | |||
56 | subsys_initcall(amiga_init_bus); | 56 | subsys_initcall(amiga_init_bus); |
57 | 57 | ||
58 | #endif /* CONFIG_ZORRO */ | 58 | #endif /* CONFIG_ZORRO */ |
59 | |||
60 | |||
61 | static int __init amiga_init_devices(void) | ||
62 | { | ||
63 | if (!MACH_IS_AMIGA) | ||
64 | return -ENODEV; | ||
65 | |||
66 | /* video hardware */ | ||
67 | if (AMIGAHW_PRESENT(AMI_VIDEO)) | ||
68 | platform_device_register_simple("amiga-video", -1, NULL, 0); | ||
69 | |||
70 | return 0; | ||
71 | } | ||
72 | |||
73 | device_initcall(amiga_init_devices); | ||