mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
usb: dwc3: meson: fix coccinelle WARNING
Coccinelle suggests using PTR_ERR_OR_ZERO(). Signed-off-by: Felipe Balbi <balbi@kernel.org>
This commit is contained in:
parent
bea46b9815
commit
a793cf81ad
1 changed files with 1 additions and 4 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue