diff options
author | John Crispin <john@openwrt.org> | 2011-11-11 21:59:01 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-11-11 21:59:01 +0000 |
commit | e1dc73be9075fbdbdf03f0efe3992350273ceca1 (patch) | |
tree | 83e035145f84afcc9214619dece1536b2e2f098c /target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch | |
parent | 20ff304ed90da0fa22b3d550fe1045d53eed5a0e (diff) | |
download | upstream-e1dc73be9075fbdbdf03f0efe3992350273ceca1.tar.gz upstream-e1dc73be9075fbdbdf03f0efe3992350273ceca1.tar.bz2 upstream-e1dc73be9075fbdbdf03f0efe3992350273ceca1.zip |
lantiq: fix breakage introduced in 3.1 bump
SVN-Revision: 28961
Diffstat (limited to 'target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch')
-rw-r--r-- | target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch b/target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch new file mode 100644 index 0000000000..ad0a11a666 --- /dev/null +++ b/target/linux/lantiq/patches/830-fix-falcon-i2c-resources.patch @@ -0,0 +1,17 @@ +--- a/arch/mips/lantiq/falcon/devices.c ++++ b/arch/mips/lantiq/falcon/devices.c +@@ -130,10 +130,10 @@ falcon_register_gpio_extra(void) + /* i2c */ + static struct resource falcon_i2c_resources[] = { + MEM_RES("i2c", LTQ_I2C_BASE_ADDR, LTQ_I2C_SIZE), +- IRQ_RES("i2c_lb", FALCON_IRQ_I2C_LBREQ), +- IRQ_RES("i2c_b", FALCON_IRQ_I2C_BREQ), +- IRQ_RES("i2c_err", FALCON_IRQ_I2C_I2C_ERR), +- IRQ_RES("i2c_p", FALCON_IRQ_I2C_I2C_P), ++ IRQ_RES(i2c_lb, FALCON_IRQ_I2C_LBREQ), ++ IRQ_RES(i2c_b, FALCON_IRQ_I2C_BREQ), ++ IRQ_RES(i2c_err, FALCON_IRQ_I2C_I2C_ERR), ++ IRQ_RES(i2c_p, FALCON_IRQ_I2C_I2C_P), + }; + + void __init falcon_register_i2c(void) |