1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 13:54:37 +03:00

[ar71xx] fix a bitmask in the ag71xx driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16658 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2009-07-02 17:23:11 +00:00
parent c2299025a7
commit 2a2b18f0d4

View File

@ -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;
};