diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-27 14:37:34 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-27 14:37:34 +0000 |
commit | dfa85e2fa8398f704ee28b6d4c4ead3707ac50b8 (patch) | |
tree | beeb54ea0c19a1af70c83cb03d5f939dda8a2e2c /target | |
parent | 03dd7f31977df09b73dd223730c77adbaa6bcf5f (diff) |
generic: rtl8366rb: fix MIB counter reset
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21969 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/rtl8366rb.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/rtl8366rb.c b/target/linux/generic/files/drivers/net/phy/rtl8366rb.c index 2105b2bd4e..61d6e3ab6f 100644 --- a/target/linux/generic/files/drivers/net/phy/rtl8366rb.c +++ b/target/linux/generic/files/drivers/net/phy/rtl8366rb.c @@ -91,13 +91,10 @@ #define RTL8366S_MIB_COUNTER_BASE 0x1000 #define RTL8366S_MIB_CTRL_REG 0x13F0 #define RTL8366S_MIB_CTRL_USER_MASK 0x0FFC -#define RTL8366S_MIB_CTRL_BUSY_MASK 0x0001 -#define RTL8366S_MIB_CTRL_RESET_MASK 0x0001 - -#define RTL8366S_MIB_CTRL_GLOBAL_RESET_MASK 0x0004 -#define RTL8366S_MIB_CTRL_PORT_RESET_BIT 0x0003 -#define RTL8366S_MIB_CTRL_PORT_RESET_MASK 0x01FC - +#define RTL8366S_MIB_CTRL_BUSY_MASK BIT(0) +#define RTL8366S_MIB_CTRL_RESET_MASK BIT(1) +#define RTL8366S_MIB_CTRL_PORT_RESET(_p) BIT(2 + (_p)) +#define RTL8366S_MIB_CTRL_GLOBAL_RESET BIT(11) #define RTL8366S_PORT_VLAN_CTRL_BASE 0x0063 #define RTL8366S_PORT_VLAN_CTRL_REG(_p) \ @@ -1107,7 +1104,8 @@ static int rtl8366rb_sw_reset_mibs(struct switch_dev *dev, int err = 0; if (val->value.i == 1) - err = rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0, (1 << 2)); + err = rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0, + RTL8366S_MIB_CTRL_GLOBAL_RESET); return err; } @@ -1327,8 +1325,8 @@ static int rtl8366rb_sw_reset_port_mibs(struct switch_dev *dev, if (val->port_vlan >= RTL8366_NUM_PORTS) return -EINVAL; - return rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, - 0, (1 << (val->port_vlan + 3))); + return rtl8366_smi_rmwr(smi, RTL8366S_MIB_CTRL_REG, 0, + RTL8366S_MIB_CTRL_PORT_RESET(val->port_vlan)); } static int rtl8366rb_sw_get_port_mib(struct switch_dev *dev, |