]> git.neil.brown.name Git - history.git/commitdiff
Fix typos in 8139cp net driver RxProto{TCP,UDP} constants
authorIan Jackson <jackson@realtek.com.tw>
Mon, 26 Aug 2002 10:38:52 +0000 (06:38 -0400)
committerJeff Garzik <jgarzik@mandrakesoft.com>
Mon, 26 Aug 2002 10:38:52 +0000 (06:38 -0400)
drivers/net/8139cp.c

index 3f7d7eb5df2acbec27255989f89baf871fbc8115..8573fb4b9c9258e54c3aa0fec22db97804c5b3f2 100644 (file)
@@ -188,8 +188,8 @@ enum {
        NormalTxPoll    = (1 << 6),  /* One or more normal Tx packets to send */
        PID1            = (1 << 17), /* 2 protocol id bits:  0==non-IP, */
        PID0            = (1 << 16), /* 1==UDP/IP, 2==TCP/IP, 3==IP */
-       RxProtoTCP      = 2,
-       RxProtoUDP      = 1,
+       RxProtoTCP      = 1,
+       RxProtoUDP      = 2,
        RxProtoIP       = 3,
        TxFIFOUnder     = (1 << 25), /* Tx FIFO underrun */
        TxOWC           = (1 << 22), /* Tx Out-of-window collision */