aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2009-07-02 17:23:11 +0000
committerGabor Juhos <juhosg@openwrt.org>2009-07-02 17:23:11 +0000
commit8f7326831c43b7a789ba16fe426ebb2a0494dc57 (patch)
tree872ae0c4561909b4c34d736188e521a00a8b117b /target/linux
parent8dc56662d42c30fc1418db88a64e4cfad04e0c79 (diff)
downloadmaster-187ad058-8f7326831c43b7a789ba16fe426ebb2a0494dc57.tar.gz
master-187ad058-8f7326831c43b7a789ba16fe426ebb2a0494dc57.tar.bz2
master-187ad058-8f7326831c43b7a789ba16fe426ebb2a0494dc57.zip
[ar71xx] fix a bitmask in the ag71xx driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16658 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h
index 1d22453a97..9037b13d74 100644
--- a/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h
+++ b/target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h
@@ -82,7 +82,7 @@ struct ag71xx_desc {
u32 ctrl;
#define DESC_EMPTY BIT(31)
#define DESC_MORE BIT(24)
-#define DESC_PKTLEN_M 0x1fff
+#define DESC_PKTLEN_M 0xfff
u32 next;
u32 pad;
};