[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cdi-devel] [PATCH 1/7] e1000: Fix TCTL Pad Short Packets bit
It's bit 3, not bit 2.
Signed-off-by: Kevin Wolf <kevin@xxxxxxxxxx>
---
e1000/device.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e1000/device.h b/e1000/device.h
index 712cf08..314ba87 100644
--- a/e1000/device.h
+++ b/e1000/device.h
@@ -88,7 +88,7 @@ enum {
enum {
TCTL_ENABLE = (1 << 1),
- TCTL_PADDING = (1 << 2),
+ TCTL_PADDING = (1 << 3),
TCTL_COLL_TSH = (0x0f << 4), /* CT - Collision Threshold */
TCTL_COLL_DIST = (0x40 << 12), /* COLD - Collision Distance */
};
--
2.1.4