Browse Source

fix a bitmask in the ag71xx driver

SVN-Revision: 16658
Gabor Juhos 16 năm trước cách đây
mục cha
commit
0fd8d0fad8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      target/linux/ar71xx/files/drivers/net/ag71xx/ag71xx.h

+ 1 - 1
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;
 };