mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:40:56 +07:00
net: phy: mscc: fix ptr_ret.cocci warnings
drivers/net/phy/mscc/mscc_ptp.c:1496:1-3: WARNING: PTR_ERR_OR_ZERO can be used
Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR
Generated by: scripts/coccinelle/api/ptr_ret.cocci
Fixes: 7d272e63e0
("net: phy: mscc: timestamping and PHC support")
CC: Antoine Tenart <antoine.tenart@bootlin.com>
Signed-off-by: kernel test robot <lkp@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e3cbdaf146
commit
faea30ed71
@ -1494,10 +1494,7 @@ static int __vsc8584_init_ptp(struct phy_device *phydev)
|
||||
|
||||
vsc8531->ptp->ptp_clock = ptp_clock_register(&vsc8531->ptp->caps,
|
||||
&phydev->mdio.dev);
|
||||
if (IS_ERR(vsc8531->ptp->ptp_clock))
|
||||
return PTR_ERR(vsc8531->ptp->ptp_clock);
|
||||
|
||||
return 0;
|
||||
return PTR_ERR_OR_ZERO(vsc8531->ptp->ptp_clock);
|
||||
}
|
||||
|
||||
void vsc8584_config_ts_intr(struct phy_device *phydev)
|
||||
|
Loading…
Reference in New Issue
Block a user