diff options
author | Geert Uytterhoeven | 2011-01-09 11:03:43 +0100 |
---|---|---|
committer | Geert Uytterhoeven | 2013-11-26 11:09:07 +0100 |
commit | 6112ea0862facaeaeab504ee01c0d04bcd22daaf (patch) | |
tree | 22c2cb929cea94dd7decd0c1756e77684acdc95c /drivers/ide | |
parent | zorro: Let the driver core handle device enumeration (diff) | |
download | kernel-qcow2-linux-6112ea0862facaeaeab504ee01c0d04bcd22daaf.tar.gz kernel-qcow2-linux-6112ea0862facaeaeab504ee01c0d04bcd22daaf.tar.xz kernel-qcow2-linux-6112ea0862facaeaeab504ee01c0d04bcd22daaf.zip |
zorro: ZTWO_VADDR() should return "void __iomem *"
ZTWO_VADDR() converts from physical to virtual I/O addresses, so it should
return "void __iomem *" instead of "unsigned long".
This allows to drop several casts, but requires adding a few casts to
accomodate legacy driver frameworks that store "unsigned long" I/O
addresses.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/buddha.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/buddha.c b/drivers/ide/buddha.c index b1d38590ac01..46eaf58d881b 100644 --- a/drivers/ide/buddha.c +++ b/drivers/ide/buddha.c @@ -198,7 +198,7 @@ fail_base2: continue; } } - buddha_board = ZTWO_VADDR(board); + buddha_board = (unsigned long)ZTWO_VADDR(board); /* write to BUDDHA_IRQ_MR to enable the board IRQ */ /* X-Surf doesn't have this. IRQs are always on */ |