From: Gabor Juhos Date: Thu, 2 Jul 2009 17:23:11 +0000 (+0000) Subject: fix a bitmask in the ag71xx driver X-Git-Tag: reboot~23077 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0fd8d0fad8c5f4b6d04ae2497c479ff43a38b5da;p=oweals%2Fopenwrt.git fix a bitmask in the ag71xx driver SVN-Revision: 16658 --- 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; };