another fix for the awk command line parsing - should finally work properly now
[openwrt.git] / package / switch / src / switch-adm.c
index 718096b..85805f6 100644 (file)
@@ -223,7 +223,7 @@ static __u32 adm_rreg(__u8 table, __u8 addr)
        __u8 bits[6] = {
                0xFF, 0xFF, 0xFF, 0xFF,
                (0x06 << 4) | ((table & 0x01) << 3 | (addr&64)>>6),
        __u8 bits[6] = {
                0xFF, 0xFF, 0xFF, 0xFF,
                (0x06 << 4) | ((table & 0x01) << 3 | (addr&64)>>6),
-               ((addr&62)<<2)
+               ((addr&63)<<2)
        };
 
        __u8 rbits[4];
        };
 
        __u8 rbits[4];
This page took 0.025992 seconds and 4 git commands to generate.