diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2009-04-05 13:05:50 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2010-05-26 19:51:09 +0200 |
commit | a24a6b22254bca8d54be6c8b7d8730d09f1058cc (patch) | |
tree | 4c7c71125efbc22f2f6302fc96538ce1d2b9f55a /arch | |
parent | 2b21d5e47bb9b07f90cf213c885867cf11f99976 (diff) | |
download | op-kernel-dev-a24a6b22254bca8d54be6c8b7d8730d09f1058cc.zip op-kernel-dev-a24a6b22254bca8d54be6c8b7d8730d09f1058cc.tar.gz |
m68k: amiga - A4000T SCSI platform device conversion
Acked-by: James Bottomley <James.Bottomley@suse.de>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch')
-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 df1fae3..027e4ca 100644 --- a/arch/m68k/amiga/platform.c +++ b/arch/m68k/amiga/platform.c @@ -65,6 +65,13 @@ static const struct resource a3000_scsi_resource __initconst = { }; +static const struct resource a4000t_scsi_resource __initconst = { + .start = 0xdd0000, + .end = 0xdd0fff, + .flags = IORESOURCE_MEM, +}; + + static int __init amiga_init_devices(void) { if (!MACH_IS_AMIGA) @@ -88,6 +95,10 @@ static int __init amiga_init_devices(void) platform_device_register_simple("amiga-a3000-scsi", -1, &a3000_scsi_resource, 1); + if (AMIGAHW_PRESENT(A4000_SCSI)) + platform_device_register_simple("amiga-a4000t-scsi", -1, + &a4000t_scsi_resource, 1); + return 0; } |