aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2005-06-13 19:55:42 +0000
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 19:31:20 +0100
commit15b6e09b66b1e534377dbd6c4d6a5d097062315c (patch)
tree523a0d8230c129c7ba880d346eedabde3ea6fb0a /drivers
parent68e4a86c8010d15ec844d06f45cd564631f2fa7e (diff)
dec_esp: Use physical addresses
These should really be addresses obtained with ioremap() or some bus-specific backend, but for now... Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/dec_esp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/dec_esp.c b/drivers/scsi/dec_esp.c
index 315f95a0d6c..4f39890b44a 100644
--- a/drivers/scsi/dec_esp.c
+++ b/drivers/scsi/dec_esp.c
@@ -228,7 +228,7 @@ static int dec_esp_detect(Scsi_Host_Template * tpnt)
mem_start = get_tc_base_addr(slot);
/* Store base addr into esp struct */
- esp->slot = PHYSADDR(mem_start);
+ esp->slot = CPHYSADDR(mem_start);
esp->dregs = 0;
esp->eregs = (struct ESP_regs *) (mem_start + DEC_SCSI_SREG);