aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-01-06 10:01:53 +0000
committerJohn Crispin <john@openwrt.org>2013-01-06 10:01:53 +0000
commitd5d2e8b4dbd8a66152629b1128edfab29ca9bba9 (patch)
tree38f8430f568970705c3bf4a4f4c2a93c21d58cfd
parent2e8409cce38373d172e099cc7430ab68699b929f (diff)
downloadupstream-d5d2e8b4dbd8a66152629b1128edfab29ca9bba9.tar.gz
upstream-d5d2e8b4dbd8a66152629b1128edfab29ca9bba9.tar.bz2
upstream-d5d2e8b4dbd8a66152629b1128edfab29ca9bba9.zip
missing underscore in 3.3 regmap patch
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 35018
-rw-r--r--target/linux/generic/patches-3.3/270-regmap_dynamic.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-3.3/270-regmap_dynamic.patch b/target/linux/generic/patches-3.3/270-regmap_dynamic.patch
index 43e13bc137..d6c32b4dcf 100644
--- a/target/linux/generic/patches-3.3/270-regmap_dynamic.patch
+++ b/target/linux/generic/patches-3.3/270-regmap_dynamic.patch
@@ -29,7 +29,7 @@
-obj-$(CONFIG_REGMAP) += regcache-rbtree.o regcache-lzo.o
-obj-$(CONFIG_DEBUG_FS) += regmap-debugfs.o
+regmap-core-objs = regmap.o regcache.o regcache-rbtree.o regcache-lzo.o
-+ifdef CONFIG_DEBUGFS
++ifdef CONFIG_DEBUG_FS
+regmap-core-objs += regmap-debugfs.o
+endif
+obj-$(CONFIG_REGMAP) += regmap-core.o