summaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2016-01-04 12:28:46 +0000
committerRafał Miłecki <zajec5@gmail.com>2016-01-04 12:28:46 +0000
commite17c1e45adccd16928aec1ff0fca41032688a4f9 (patch)
tree5edfe805136bfc918f0d179ea93059051171befa /target/linux
parentccb7d794ff2ea14369c1759a1e2bcf885e64d456 (diff)
downloadmaster-31e0f0ae-e17c1e45adccd16928aec1ff0fca41032688a4f9.tar.gz
master-31e0f0ae-e17c1e45adccd16928aec1ff0fca41032688a4f9.tar.bz2
master-31e0f0ae-e17c1e45adccd16928aec1ff0fca41032688a4f9.zip
bcm53xx: fix USB patch breaking 4.4 compilation
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 48112
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/bcm53xx/patches-4.4/810-USB-bcma-use-simpler-devm_gpiod_get.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/patches-4.4/810-USB-bcma-use-simpler-devm_gpiod_get.patch b/target/linux/bcm53xx/patches-4.4/810-USB-bcma-use-simpler-devm_gpiod_get.patch
index 32a5113845..a2c9b12051 100644
--- a/target/linux/bcm53xx/patches-4.4/810-USB-bcma-use-simpler-devm_gpiod_get.patch
+++ b/target/linux/bcm53xx/patches-4.4/810-USB-bcma-use-simpler-devm_gpiod_get.patch
@@ -18,7 +18,7 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
if (dev->dev.of_node)
- usb_dev->gpio_desc = devm_get_gpiod_from_child(&dev->dev, "vcc",
- &dev->dev.of_node->fwnode);
-+ usb_dev->gpio_desc = devm_gpiod_get(&dev->dev, "vcc");
++ usb_dev->gpio_desc = devm_gpiod_get(&dev->dev, "vcc", 0);
if (!IS_ERR_OR_NULL(usb_dev->gpio_desc))
gpiod_direction_output(usb_dev->gpio_desc, 1);