index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
summary
refs
log
tree
commit
diff
path:
root
/
target
/
linux
/
generic
/
patches-2.6.34
/
925-modify-i2c-gpio-initcall-level.patch
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'target/linux/generic/patches-2.6.34/925-modify-i2c-gpio-initcall-level.patch')
-rw-r--r--
target/linux/generic/patches-2.6.34/925-modify-i2c-gpio-initcall-level.patch
11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.34/925-modify-i2c-gpio-initcall-level.patch b/target/linux/generic/patches-2.6.34/925-modify-i2c-gpio-initcall-level.patch
new file mode 100644
index 0000000000..d4926894e6
--- /dev/null
+++ b/
target/linux/generic/patches-2.6.34/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
+@@ -211,7 +211,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)
+ {