Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40494
b: refs/heads/master
c: 4aad7b7
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Oct 30, 2006
1 parent cede34e commit b13f748
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e30e66becaa237d1753d148703cf8f1301ab27f0
refs/heads/master: 4aad7b726996a2d453d210cd5691730aca087b83
39 changes: 33 additions & 6 deletions trunk/arch/mips/emma2rh/markeins/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,45 @@
#define I2C_EMMA2RH "emma2rh-iic" /* must be in sync with IIC driver */

static struct resource i2c_emma_resources_0[] = {
{ NULL, EMMA2RH_IRQ_PIIC0, EMMA2RH_IRQ_PIIC0, IORESOURCE_IRQ },
{ NULL, KSEG1ADDR(EMMA2RH_PIIC0_BASE), KSEG1ADDR(EMMA2RH_PIIC0_BASE + 0x1000), 0 },
{
.name = NULL,
.start = EMMA2RH_IRQ_PIIC0,
.end = EMMA2RH_IRQ_PIIC0,
.flags = IORESOURCE_IRQ
}, {
.name = NULL,
.start = KSEG1ADDR(EMMA2RH_PIIC0_BASE),
.end = KSEG1ADDR(EMMA2RH_PIIC0_BASE + 0x1000),
.flags = 0
},
};

struct resource i2c_emma_resources_1[] = {
{ NULL, EMMA2RH_IRQ_PIIC1, EMMA2RH_IRQ_PIIC1, IORESOURCE_IRQ },
{ NULL, KSEG1ADDR(EMMA2RH_PIIC1_BASE), KSEG1ADDR(EMMA2RH_PIIC1_BASE + 0x1000), 0 },
{
.name = NULL,
.start = EMMA2RH_IRQ_PIIC1,
.end = EMMA2RH_IRQ_PIIC1,
.flags = IORESOURCE_IRQ
}, {
.name = NULL,
.start = KSEG1ADDR(EMMA2RH_PIIC1_BASE),
.end = KSEG1ADDR(EMMA2RH_PIIC1_BASE + 0x1000),
.flags = 0
},
};

struct resource i2c_emma_resources_2[] = {
{ NULL, EMMA2RH_IRQ_PIIC2, EMMA2RH_IRQ_PIIC2, IORESOURCE_IRQ },
{ NULL, KSEG1ADDR(EMMA2RH_PIIC2_BASE), KSEG1ADDR(EMMA2RH_PIIC2_BASE + 0x1000), 0 },
{
.name = NULL,
.start = EMMA2RH_IRQ_PIIC2,
.end = EMMA2RH_IRQ_PIIC2,
.flags = IORESOURCE_IRQ
}, {
.name = NULL,
.start = KSEG1ADDR(EMMA2RH_PIIC2_BASE),
.end = KSEG1ADDR(EMMA2RH_PIIC2_BASE + 0x1000),
.flags = 0
},
};

struct platform_device i2c_emma_devices[] = {
Expand Down

0 comments on commit b13f748

Please sign in to comment.