mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-04 04:53:46 +01:00
realtek: mdio: rename RTMDIO_MAX_PORT to RTMDIO_MAX_PHY
As with all the rest align the define to reflect that the driver deals with phys. Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Link: https://github.com/openwrt/openwrt/pull/22131 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
2df9b1b6be
commit
a8946bad55
1 changed files with 7 additions and 7 deletions
|
|
@ -9,7 +9,7 @@
|
|||
#include <linux/regmap.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#define RTMDIO_MAX_PORT 57
|
||||
#define RTMDIO_MAX_PHY 57
|
||||
#define RTMDIO_MAX_SMI_BUS 4
|
||||
#define RTMDIO_PAGE_SELECT 0x1f
|
||||
|
||||
|
|
@ -181,10 +181,10 @@
|
|||
struct rtmdio_ctrl {
|
||||
struct regmap *map;
|
||||
const struct rtmdio_config *cfg;
|
||||
int page[RTMDIO_MAX_PORT];
|
||||
bool raw[RTMDIO_MAX_PORT];
|
||||
int smi_bus[RTMDIO_MAX_PORT];
|
||||
int smi_addr[RTMDIO_MAX_PORT];
|
||||
int page[RTMDIO_MAX_PHY];
|
||||
bool raw[RTMDIO_MAX_PHY];
|
||||
int smi_bus[RTMDIO_MAX_PHY];
|
||||
int smi_addr[RTMDIO_MAX_PHY];
|
||||
bool smi_bus_isc45[RTMDIO_MAX_SMI_BUS];
|
||||
};
|
||||
|
||||
|
|
@ -877,7 +877,7 @@ static int rtmdio_reset(struct mii_bus *bus)
|
|||
static int rtmdio_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
struct device_node *dn[RTMDIO_MAX_PORT] = {}, *np;
|
||||
struct device_node *dn[RTMDIO_MAX_PHY] = {}, *np;
|
||||
struct rtmdio_ctrl *ctrl;
|
||||
struct mii_bus *bus;
|
||||
int ret, addr;
|
||||
|
|
@ -892,7 +892,7 @@ static int rtmdio_probe(struct platform_device *pdev)
|
|||
if (IS_ERR(ctrl->map))
|
||||
return PTR_ERR(ctrl->map);
|
||||
|
||||
for (addr = 0; addr < RTMDIO_MAX_PORT; addr++)
|
||||
for (addr = 0; addr < RTMDIO_MAX_PHY; addr++)
|
||||
ctrl->smi_bus[addr] = -1;
|
||||
|
||||
for_each_node_by_name(np, "ethernet-phy") {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue