diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-19 22:27:13 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-19 22:27:13 -0400 |
commit | 62669e61a5f559826b1d2e863649a6005eee629b (patch) | |
tree | 253b17f2897b7fad5f29e796e1c954500b3ca925 | |
parent | 639138a991aaf1a3f65cc66700d097edc5f602fe (diff) |
sh: mach-hp6xx: Fix up the hp6xx build for hd64461 changes.
Fixes several compile errors due to the recent hd64461 I/O base changes.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/cchips/hd6446x/hd64461.c | 2 | ||||
-rw-r--r-- | arch/sh/include/asm/hd64461.h | 2 | ||||
-rw-r--r-- | drivers/video/hitfb.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/arch/sh/cchips/hd6446x/hd64461.c b/arch/sh/cchips/hd6446x/hd64461.c index 25ef91061521..50aa0c1f76ea 100644 --- a/arch/sh/cchips/hd6446x/hd64461.c +++ b/arch/sh/cchips/hd6446x/hd64461.c | |||
@@ -80,7 +80,7 @@ int __init setup_hd64461(void) | |||
80 | 80 | ||
81 | printk(KERN_INFO | 81 | printk(KERN_INFO |
82 | "HD64461 configured at 0x%x on irq %d(mapped into %d to %d)\n", | 82 | "HD64461 configured at 0x%x on irq %d(mapped into %d to %d)\n", |
83 | CONFIG_HD64461_IOBASE, CONFIG_HD64461_IRQ, HD64461_IRQBASE, | 83 | HD64461_IOBASE, CONFIG_HD64461_IRQ, HD64461_IRQBASE, |
84 | HD64461_IRQBASE + 15); | 84 | HD64461_IRQBASE + 15); |
85 | 85 | ||
86 | /* Should be at processor specific part.. */ | 86 | /* Should be at processor specific part.. */ |
diff --git a/arch/sh/include/asm/hd64461.h b/arch/sh/include/asm/hd64461.h index c16d54563c93..977355f0a483 100644 --- a/arch/sh/include/asm/hd64461.h +++ b/arch/sh/include/asm/hd64461.h | |||
@@ -26,7 +26,7 @@ | |||
26 | #define HD64461_PCC1_COMM (HD64461_PCC1_BASE+HD64461_PCC_WINDOW) /* 0xb5000000 */ | 26 | #define HD64461_PCC1_COMM (HD64461_PCC1_BASE+HD64461_PCC_WINDOW) /* 0xb5000000 */ |
27 | 27 | ||
28 | /* Standby Control Register for HD64461 */ | 28 | /* Standby Control Register for HD64461 */ |
29 | #define HD64461_STBCR CONFIG_HD64461_IOBASE | 29 | #define HD64461_STBCR HD64461_IO_OFFSET(0x00000000) |
30 | #define HD64461_STBCR_CKIO_STBY 0x2000 | 30 | #define HD64461_STBCR_CKIO_STBY 0x2000 |
31 | #define HD64461_STBCR_SAFECKE_IST 0x1000 | 31 | #define HD64461_STBCR_SAFECKE_IST 0x1000 |
32 | #define HD64461_STBCR_SLCKE_IST 0x0800 | 32 | #define HD64461_STBCR_SLCKE_IST 0x0800 |
diff --git a/drivers/video/hitfb.c b/drivers/video/hitfb.c index e6467cf9f19f..020db7fc9153 100644 --- a/drivers/video/hitfb.c +++ b/drivers/video/hitfb.c | |||
@@ -335,9 +335,9 @@ static int __init hitfb_probe(struct platform_device *dev) | |||
335 | if (fb_get_options("hitfb", NULL)) | 335 | if (fb_get_options("hitfb", NULL)) |
336 | return -ENODEV; | 336 | return -ENODEV; |
337 | 337 | ||
338 | hitfb_fix.mmio_start = CONFIG_HD64461_IOBASE+0x1000; | 338 | hitfb_fix.mmio_start = HD64461_IO_OFFSET(0x1000); |
339 | hitfb_fix.mmio_len = 0x1000; | 339 | hitfb_fix.mmio_len = 0x1000; |
340 | hitfb_fix.smem_start = CONFIG_HD64461_IOBASE + 0x02000000; | 340 | hitfb_fix.smem_start = HD64461_IO_OFFSET(0x02000000); |
341 | hitfb_fix.smem_len = 512 * 1024; | 341 | hitfb_fix.smem_len = 512 * 1024; |
342 | 342 | ||
343 | lcdclor = fb_readw(HD64461_LCDCLOR); | 343 | lcdclor = fb_readw(HD64461_LCDCLOR); |