diff options
author | Felipe Balbi <balbi@kernel.org> | 2020-08-13 07:09:55 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@kernel.org> | 2020-10-02 08:43:35 +0200 |
commit | a793cf81ad0c54c13a38f1d7fac03f91fe7136dc (patch) | |
tree | 0c1195e9eb2836d4ad9d05b73cb5bb558dbefde6 /drivers/usb/dwc3/dwc3-meson-g12a.c | |
parent | usb: dwc3: qcom: Add interconnect support in dwc3 driver (diff) | |
download | linux-a793cf81ad0c54c13a38f1d7fac03f91fe7136dc.tar.xz linux-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 '')
-rw-r--r-- | drivers/usb/dwc3/dwc3-meson-g12a.c | 5 |
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, |