diff options
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/amiga/platform.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 38f18bf14737..df1fae3c3729 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c | |||
@@ -58,6 +58,13 @@ subsys_initcall(amiga_init_bus); | |||
58 | #endif /* CONFIG_ZORRO */ | 58 | #endif /* CONFIG_ZORRO */ |
59 | 59 | ||
60 | 60 | ||
61 | static const struct resource a3000_scsi_resource __initconst = { | ||
62 | .start = 0xdd0000, | ||
63 | .end = 0xdd00ff, | ||
64 | .flags = IORESOURCE_MEM, | ||
65 | }; | ||
66 | |||
67 | |||
61 | static int __init amiga_init_devices(void) | 68 | static int __init amiga_init_devices(void) |
62 | { | 69 | { |
63 | if (!MACH_IS_AMIGA) | 70 | if (!MACH_IS_AMIGA) |
@@ -77,6 +84,10 @@ static int __init amiga_init_devices(void) | |||
77 | if (AMIGAHW_PRESENT(AMI_FLOPPY)) | 84 | if (AMIGAHW_PRESENT(AMI_FLOPPY)) |
78 | platform_device_register_simple("amiga-floppy", -1, NULL, 0); | 85 | platform_device_register_simple("amiga-floppy", -1, NULL, 0); |
79 | 86 | ||
87 | if (AMIGAHW_PRESENT(A3000_SCSI)) | ||
88 | platform_device_register_simple("amiga-a3000-scsi", -1, | ||
89 | &a3000_scsi_resource, 1); | ||
90 | |||
80 | return 0; | 91 | return 0; |
81 | } | 92 | } |
82 | 93 | ||