Fix the counters bug (#983)
authorFlorian Fainelli <florian@openwrt.org>
Wed, 27 Dec 2006 19:35:13 +0000 (19:35 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Wed, 27 Dec 2006 19:35:13 +0000 (19:35 +0000)
SVN-Revision: 5910

openwrt/target/linux/package/switch/src/switch-adm.c

index 423c5a88d3743b395afcafbb09eebbbd7f902c66..4ae360dc0af45599f924368e560dd4c8c52733e4 100644 (file)
@@ -215,7 +215,7 @@ static __u32 adm_rreg(__u8 table, __u8 addr)
        __u8 bits[6] = {
                0xFF, 0xFF, 0xFF, 0xFF,
                (0x06 << 4) | ((table & 0x01) << 3 | (addr&64)>>6),
-               ((addr&62)<<2)
+               ((addr&63)<<2)
        };
 
        __u8 rbits[4];