mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
usb: gadget: s3c-hsotg: fix PHY error handling
PHY laye rno longer return NULL. We need to switch over from IS_ERR_OR_NULL() to IS_ERR(). Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
4dbb716125
commit
f4f5ba5e7d
@ -3467,7 +3467,7 @@ static int s3c_hsotg_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2);
|
||||
if (IS_ERR_OR_NULL(phy)) {
|
||||
if (IS_ERR(phy)) {
|
||||
/* Fallback for pdata */
|
||||
plat = pdev->dev.platform_data;
|
||||
if (!plat) {
|
||||
|
Loading…
Reference in New Issue
Block a user