|
@@ -321,6 +321,9 @@ static struct platform_device mv78xx0_ge00 = {
|
|
|
.id = 0,
|
|
|
.num_resources = 1,
|
|
|
.resource = mv78xx0_ge00_resources,
|
|
|
+ .dev = {
|
|
|
+ .coherent_dma_mask = 0xffffffff,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data)
|
|
@@ -375,6 +378,9 @@ static struct platform_device mv78xx0_ge01 = {
|
|
|
.id = 1,
|
|
|
.num_resources = 1,
|
|
|
.resource = mv78xx0_ge01_resources,
|
|
|
+ .dev = {
|
|
|
+ .coherent_dma_mask = 0xffffffff,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data)
|
|
@@ -429,6 +435,9 @@ static struct platform_device mv78xx0_ge10 = {
|
|
|
.id = 2,
|
|
|
.num_resources = 1,
|
|
|
.resource = mv78xx0_ge10_resources,
|
|
|
+ .dev = {
|
|
|
+ .coherent_dma_mask = 0xffffffff,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data)
|
|
@@ -496,6 +505,9 @@ static struct platform_device mv78xx0_ge11 = {
|
|
|
.id = 3,
|
|
|
.num_resources = 1,
|
|
|
.resource = mv78xx0_ge11_resources,
|
|
|
+ .dev = {
|
|
|
+ .coherent_dma_mask = 0xffffffff,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data)
|
|
@@ -532,12 +544,10 @@ static struct mv64xxx_i2c_pdata mv78xx0_i2c_0_pdata = {
|
|
|
|
|
|
static struct resource mv78xx0_i2c_0_resources[] = {
|
|
|
{
|
|
|
- .name = "i2c 0 base",
|
|
|
.start = I2C_0_PHYS_BASE,
|
|
|
.end = I2C_0_PHYS_BASE + 0x1f,
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
}, {
|
|
|
- .name = "i2c 0 irq",
|
|
|
.start = IRQ_MV78XX0_I2C_0,
|
|
|
.end = IRQ_MV78XX0_I2C_0,
|
|
|
.flags = IORESOURCE_IRQ,
|
|
@@ -567,12 +577,10 @@ static struct mv64xxx_i2c_pdata mv78xx0_i2c_1_pdata = {
|
|
|
|
|
|
static struct resource mv78xx0_i2c_1_resources[] = {
|
|
|
{
|
|
|
- .name = "i2c 1 base",
|
|
|
.start = I2C_1_PHYS_BASE,
|
|
|
.end = I2C_1_PHYS_BASE + 0x1f,
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
}, {
|
|
|
- .name = "i2c 1 irq",
|
|
|
.start = IRQ_MV78XX0_I2C_1,
|
|
|
.end = IRQ_MV78XX0_I2C_1,
|
|
|
.flags = IORESOURCE_IRQ,
|