summaryrefslogtreecommitdiffstats
path: root/package/kernel/w1-gpio-custom
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-05-23 15:29:20 +0000
committerJohn Crispin <john@openwrt.org>2015-05-23 15:29:20 +0000
commit61c23c2eaaf7e6c6fbe4c959cd6b58807b663927 (patch)
tree3a45e3609df01d0bcf6a8a4121934f3a9fbd53cd /package/kernel/w1-gpio-custom
parent803ebd2725f0f661e3981fad56180832e88b6fbd (diff)
downloadmaster-31e0f0ae-61c23c2eaaf7e6c6fbe4c959cd6b58807b663927.tar.gz
master-31e0f0ae-61c23c2eaaf7e6c6fbe4c959cd6b58807b663927.tar.bz2
master-31e0f0ae-61c23c2eaaf7e6c6fbe4c959cd6b58807b663927.zip
w1-gpio-custom: Fix uninitialised variable causing 1-wire to not bind to GPIO
Signed-off-by: Andrew McDonnell <bugs@andrewmcdonnell.net> SVN-Revision: 45739
Diffstat (limited to 'package/kernel/w1-gpio-custom')
-rw-r--r--package/kernel/w1-gpio-custom/src/w1-gpio-custom.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/w1-gpio-custom/src/w1-gpio-custom.c b/package/kernel/w1-gpio-custom/src/w1-gpio-custom.c
index fc2f842208..004c9240ba 100644
--- a/package/kernel/w1-gpio-custom/src/w1-gpio-custom.c
+++ b/package/kernel/w1-gpio-custom/src/w1-gpio-custom.c
@@ -113,6 +113,7 @@ static int __init w1_gpio_custom_add_one(unsigned int id, unsigned int *params)
pdata.pin = params[BUS_PARAM_PIN];
pdata.is_open_drain = params[BUS_PARAM_OD] ? 1 : 0;
pdata.enable_external_pullup = NULL;
+ pdata.ext_pullup_enable_pin = -EINVAL;
err = platform_device_add_data(pdev, &pdata, sizeof(pdata));
if (err)