mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ide-generic: fix ide_default_io_base() for m32r
Fix ide_default_io_base() to match ide_default_irq(). Cc: Hirokazu Takata <takata@linux-m32r.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
b0a6281796
commit
ac32f3238c
@ -52,12 +52,20 @@ static __inline__ int ide_default_irq(unsigned long base)
|
||||
static __inline__ unsigned long ide_default_io_base(int index)
|
||||
{
|
||||
switch (index) {
|
||||
#if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_MAPPI2) \
|
||||
|| defined(CONFIG_PLAT_OPSPUT)
|
||||
case 0: return 0x1f0;
|
||||
#elif defined(CONFIG_PLAT_MAPPI3)
|
||||
case 0: return 0x1f0;
|
||||
case 1: return 0x170;
|
||||
#else
|
||||
case 0: return 0x1f0;
|
||||
case 1: return 0x170;
|
||||
case 2: return 0x1e8;
|
||||
case 3: return 0x168;
|
||||
case 4: return 0x1e0;
|
||||
case 5: return 0x160;
|
||||
#endif
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user