Commit d8af9463 authored by Kevin Hilman's avatar Kevin Hilman

ARM: DaVinci: i2c platform data needs physical addresses

Pass physical addresses in the i2c platform data since they
are converted to virtual in the i2c driver.
Signed-off-by: default avatarKevin Hilman <khilman@mvista.com>
parent 870e08a5
......@@ -23,8 +23,8 @@
static struct resource i2c_resources[] = {
{
.start = IO_ADDRESS(DAVINCI_I2C_BASE),
.end = IO_ADDRESS(DAVINCI_I2C_BASE) + 0x40,
.start = DAVINCI_I2C_BASE,
.end = DAVINCI_I2C_BASE + 0x40,
.flags = IORESOURCE_MEM,
},
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment