summaryrefslogtreecommitdiffstats
path: root/drivers/usb/dwc3
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@kernel.org>2020-08-13 08:09:55 +0300
committerFelipe Balbi <balbi@kernel.org>2020-10-02 09:43:35 +0300
commita793cf81ad0c54c13a38f1d7fac03f91fe7136dc (patch)
tree0c1195e9eb2836d4ad9d05b73cb5bb558dbefde6 /drivers/usb/dwc3
parentbea46b9815154ac47baf16b64022d791a4471375 (diff)
downloadlinux-stable-a793cf81ad0c54c13a38f1d7fac03f91fe7136dc.tar.gz
linux-stable-a793cf81ad0c54c13a38f1d7fac03f91fe7136dc.tar.bz2
linux-stable-a793cf81ad0c54c13a38f1d7fac03f91fe7136dc.zip
usb: dwc3: meson: fix coccinelle WARNING
Coccinelle suggests using PTR_ERR_OR_ZERO(). Signed-off-by: Felipe Balbi <balbi@kernel.org>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r--drivers/usb/dwc3/dwc3-meson-g12a.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c
index 1f7f4d88ed9d..8fc7e0b39179 100644
--- a/drivers/usb/dwc3/dwc3-meson-g12a.c
+++ b/drivers/usb/dwc3/dwc3-meson-g12a.c
@@ -626,10 +626,7 @@ static int dwc3_meson_gxl_setup_regmaps(struct dwc3_meson_g12a *priv,
/* GXL controls the PHY mode in the PHY registers unlike G12A */
priv->usb_glue_regmap = devm_regmap_init_mmio(priv->dev, base,
&phy_meson_g12a_usb_glue_regmap_conf);
- if (IS_ERR(priv->usb_glue_regmap))
- return PTR_ERR(priv->usb_glue_regmap);
-
- return 0;
+ return PTR_ERR_OR_ZERO(priv->usb_glue_regmap);
}
static int dwc3_meson_g12a_setup_regmaps(struct dwc3_meson_g12a *priv,