kernel: update 4.4 to 4.4.86
[openwrt/openwrt.git] / target / linux / bcm53xx / patches-4.4 / 070-0002-phy-bcm-ns-usb2-checking-the-wrong-variable.patch
1 From 6c081ff6fd5abd621797570be43d5e3c6acfcd58 Mon Sep 17 00:00:00 2001
2 From: Dan Carpenter <dan.carpenter@oracle.com>
3 Date: Tue, 10 May 2016 11:01:33 +0300
4 Subject: [PATCH] phy: bcm-ns-usb2: checking the wrong variable
5
6 We intended to test "usb2->phy" here instead of "dev".
7
8 Fixes: d3feb4067335 ('phy: bcm-ns-usb2: new driver for USB 2.0 PHY on Northstar')
9 Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
10 Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
11 ---
12 drivers/phy/phy-bcm-ns-usb2.c | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 --- a/drivers/phy/phy-bcm-ns-usb2.c
16 +++ b/drivers/phy/phy-bcm-ns-usb2.c
17 @@ -109,8 +109,8 @@ static int bcm_ns_usb2_probe(struct plat
18 }
19
20 usb2->phy = devm_phy_create(dev, NULL, &ops);
21 - if (IS_ERR(dev))
22 - return PTR_ERR(dev);
23 + if (IS_ERR(usb2->phy))
24 + return PTR_ERR(usb2->phy);
25
26 phy_set_drvdata(usb2->phy, usb2);
27 platform_set_drvdata(pdev, usb2);