mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-25 20:14:25 +08:00
net: dsa: microchip: ksz8_r_dyn_mac_table(): use entries variable to signal 0 entries
We already have a variable to provide number of entries. So use it, instead of using error number. Reviewed-by: Vladimir Oltean <olteanv@gmail.com> Acked-by: Arun Ramadoss <arun.ramadoss@microchip.com> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de> Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com> Link: https://lore.kernel.org/r/20240403125039.3414824-9-o.rempel@pengutronix.de Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
7caed786b3
commit
8d5758120d
@ -399,19 +399,11 @@ static int ksz8_valid_dyn_entry(struct ksz_device *dev, u8 *data)
|
||||
} while ((*data & masks[DYNAMIC_MAC_TABLE_NOT_READY]) && timeout);
|
||||
|
||||
/* Entry is not ready for accessing. */
|
||||
if (*data & masks[DYNAMIC_MAC_TABLE_NOT_READY]) {
|
||||
if (*data & masks[DYNAMIC_MAC_TABLE_NOT_READY])
|
||||
return -ETIMEDOUT;
|
||||
/* Entry is ready for accessing. */
|
||||
} else {
|
||||
ret = ksz_read8(dev, regs[REG_IND_DATA_8], data);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* There is no valid entry in the table. */
|
||||
if (*data & masks[DYNAMIC_MAC_TABLE_MAC_EMPTY])
|
||||
return -ENXIO;
|
||||
}
|
||||
return 0;
|
||||
/* Entry is ready for accessing. */
|
||||
return ksz_read8(dev, regs[REG_IND_DATA_8], data);
|
||||
}
|
||||
|
||||
static int ksz8_r_dyn_mac_table(struct ksz_device *dev, u16 addr, u8 *mac_addr,
|
||||
@ -439,14 +431,14 @@ static int ksz8_r_dyn_mac_table(struct ksz_device *dev, u16 addr, u8 *mac_addr,
|
||||
goto unlock_alu;
|
||||
|
||||
ret = ksz8_valid_dyn_entry(dev, &data);
|
||||
if (ret == -ENXIO) {
|
||||
if (ret)
|
||||
goto unlock_alu;
|
||||
|
||||
if (data & masks[DYNAMIC_MAC_TABLE_MAC_EMPTY]) {
|
||||
*entries = 0;
|
||||
goto unlock_alu;
|
||||
}
|
||||
|
||||
if (ret)
|
||||
goto unlock_alu;
|
||||
|
||||
ret = ksz_read64(dev, regs[REG_IND_DATA_HI], &buf);
|
||||
if (ret)
|
||||
goto unlock_alu;
|
||||
@ -1210,8 +1202,6 @@ int ksz8_fdb_dump(struct ksz_device *dev, int port,
|
||||
for (i = 0; i < KSZ8_DYN_MAC_ENTRIES; i++) {
|
||||
ret = ksz8_r_dyn_mac_table(dev, i, mac, &fid, &src_port,
|
||||
&entries);
|
||||
if (ret == -ENXIO)
|
||||
return 0;
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user