aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/sibyte/patches/105-sibyte_hwmon.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-12 10:49:30 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-12 10:49:30 +0000
commitd6e36e0c43bcfc84afcc507b724e35fce4772a3d (patch)
treea4e97733a58ce7acdd03b10bf2c564583e25db38 /target/linux/sibyte/patches/105-sibyte_hwmon.patch
parente3ba37da26feca64b5e4eee541041c06e0cc90e8 (diff)
downloadupstream-d6e36e0c43bcfc84afcc507b724e35fce4772a3d.tar.gz
upstream-d6e36e0c43bcfc84afcc507b724e35fce4772a3d.tar.bz2
upstream-d6e36e0c43bcfc84afcc507b724e35fce4772a3d.zip
sibyte: remove 2.6.37 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31682 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/sibyte/patches/105-sibyte_hwmon.patch')
-rw-r--r--target/linux/sibyte/patches/105-sibyte_hwmon.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/sibyte/patches/105-sibyte_hwmon.patch b/target/linux/sibyte/patches/105-sibyte_hwmon.patch
deleted file mode 100644
index 93dd4230d5..0000000000
--- a/target/linux/sibyte/patches/105-sibyte_hwmon.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/arch/mips/sibyte/swarm/swarm-i2c.c
-+++ b/arch/mips/sibyte/swarm/swarm-i2c.c
-@@ -13,6 +13,11 @@
- #include <linux/init.h>
- #include <linux/kernel.h>
-
-+static struct i2c_board_info swarm_i2c_info0[] __initdata = {
-+ {
-+ I2C_BOARD_INFO("lm90", 0x2a),
-+ },
-+};
-
- static struct i2c_board_info swarm_i2c_info1[] __initdata = {
- {
-@@ -24,6 +29,8 @@ static int __init swarm_i2c_init(void)
- {
- int err;
-
-+ err = i2c_register_board_info(0, swarm_i2c_info0,
-+ ARRAY_SIZE(swarm_i2c_info0));
- err = i2c_register_board_info(1, swarm_i2c_info1,
- ARRAY_SIZE(swarm_i2c_info1));
- if (err < 0)