diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-30 09:59:54 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-30 16:41:30 -0500 |
commit | 77aec99906367276afedf6f5583671de2ff609be (patch) | |
tree | d2ef058d1289bd58a6d210b1067a0b0647758eea /arch/mips/emma2rh/markeins | |
parent | 4aad7b726996a2d453d210cd5691730aca087b83 (diff) |
[MIPS] EMMA 2 / Markeins: struct resource takes physical addresses.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/emma2rh/markeins')
-rw-r--r-- | arch/mips/emma2rh/markeins/platform.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/emma2rh/markeins/platform.c b/arch/mips/emma2rh/markeins/platform.c index be13cecfc06f..11567702b155 100644 --- a/arch/mips/emma2rh/markeins/platform.c +++ b/arch/mips/emma2rh/markeins/platform.c | |||
@@ -51,8 +51,8 @@ static struct resource i2c_emma_resources_0[] = { | |||
51 | .flags = IORESOURCE_IRQ | 51 | .flags = IORESOURCE_IRQ |
52 | }, { | 52 | }, { |
53 | .name = NULL, | 53 | .name = NULL, |
54 | .start = KSEG1ADDR(EMMA2RH_PIIC0_BASE), | 54 | .start = EMMA2RH_PIIC0_BASE, |
55 | .end = KSEG1ADDR(EMMA2RH_PIIC0_BASE + 0x1000), | 55 | .end = EMMA2RH_PIIC0_BASE + 0x1000, |
56 | .flags = 0 | 56 | .flags = 0 |
57 | }, | 57 | }, |
58 | }; | 58 | }; |
@@ -65,8 +65,8 @@ struct resource i2c_emma_resources_1[] = { | |||
65 | .flags = IORESOURCE_IRQ | 65 | .flags = IORESOURCE_IRQ |
66 | }, { | 66 | }, { |
67 | .name = NULL, | 67 | .name = NULL, |
68 | .start = KSEG1ADDR(EMMA2RH_PIIC1_BASE), | 68 | .start = EMMA2RH_PIIC1_BASE, |
69 | .end = KSEG1ADDR(EMMA2RH_PIIC1_BASE + 0x1000), | 69 | .end = EMMA2RH_PIIC1_BASE + 0x1000, |
70 | .flags = 0 | 70 | .flags = 0 |
71 | }, | 71 | }, |
72 | }; | 72 | }; |
@@ -79,8 +79,8 @@ struct resource i2c_emma_resources_2[] = { | |||
79 | .flags = IORESOURCE_IRQ | 79 | .flags = IORESOURCE_IRQ |
80 | }, { | 80 | }, { |
81 | .name = NULL, | 81 | .name = NULL, |
82 | .start = KSEG1ADDR(EMMA2RH_PIIC2_BASE), | 82 | .start = EMMA2RH_PIIC2_BASE, |
83 | .end = KSEG1ADDR(EMMA2RH_PIIC2_BASE + 0x1000), | 83 | .end = EMMA2RH_PIIC2_BASE + 0x1000, |
84 | .flags = 0 | 84 | .flags = 0 |
85 | }, | 85 | }, |
86 | }; | 86 | }; |