ipq806x: set v4.9 as default
[openwrt/openwrt.git] / target / linux / ipq806x / patches-4.4 / 097-4-usb-dwc3-fix-missing-platform_set_drvdata-in-dwc3_of_simple_probe.patch
1 From 4c4f106c032ff32b89c98a4d819e68e6e643c14e Mon Sep 17 00:00:00 2001
2 From: Wei Yongjun <weiyj.lk@gmail.com>
3 Date: Tue, 26 Jul 2016 14:47:00 +0000
4 Subject: usb: dwc3: fix missing platform_set_drvdata() in
5 dwc3_of_simple_probe()
6
7 Add missing platform_set_drvdata() in dwc3_of_simple_probe(), otherwise
8 calling platform_get_drvdata() in remove returns NULL.
9
10 This is detected by Coccinelle semantic patch.
11
12 Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
13 Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
14 ---
15 drivers/usb/dwc3/dwc3-of-simple.c | 1 +
16 1 file changed, 1 insertion(+)
17
18 --- a/drivers/usb/dwc3/dwc3-of-simple.c
19 +++ b/drivers/usb/dwc3/dwc3-of-simple.c
20 @@ -61,6 +61,7 @@ static int dwc3_of_simple_probe(struct p
21 if (!simple->clks)
22 return -ENOMEM;
23
24 + platform_set_drvdata(pdev, simple);
25 simple->dev = dev;
26
27 for (i = 0; i < simple->num_clocks; i++) {