diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2009-11-03 10:49:27 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2009-11-03 10:49:27 +0000 |
commit | 3d4466cfd8f75f717efdb1f96fdde3c70d865fc1 (patch) | |
tree | e0d2b76bad5b0289f4a3ab013ad698dcc284e1c5 /target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch | |
parent | ab81d139c7675244c704ef5cad4407dbbae8c351 (diff) | |
download | upstream-3d4466cfd8f75f717efdb1f96fdde3c70d865fc1.tar.gz upstream-3d4466cfd8f75f717efdb1f96fdde3c70d865fc1.tar.bz2 upstream-3d4466cfd8f75f717efdb1f96fdde3c70d865fc1.zip |
add preliminary 2.6.32 support
SVN-Revision: 18283
Diffstat (limited to 'target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch b/target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch new file mode 100644 index 0000000000..1708e33d01 --- /dev/null +++ b/target/linux/generic-2.6/patches-2.6.32/925-modify-i2c-gpio-initcall-level.patch @@ -0,0 +1,11 @@ +--- a/drivers/i2c/busses/i2c-gpio.c ++++ b/drivers/i2c/busses/i2c-gpio.c +@@ -210,7 +210,7 @@ static int __init i2c_gpio_init(void) + + return ret; + } +-module_init(i2c_gpio_init); ++subsys_initcall(i2c_gpio_init); + + static void __exit i2c_gpio_exit(void) + { |