Module Name:    src
Committed By:   mlelstv
Date:           Sat Oct  1 07:21:45 UTC 2016

Modified Files:
        src/sys/dev/usb: if_run.c

Log Message:
mcs is a 16bit value.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/usb/if_run.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/usb/if_run.c
diff -u src/sys/dev/usb/if_run.c:1.16 src/sys/dev/usb/if_run.c:1.17
--- src/sys/dev/usb/if_run.c:1.16	Fri Sep 16 09:25:30 2016
+++ src/sys/dev/usb/if_run.c	Sat Oct  1 07:21:45 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_run.c,v 1.16 2016/09/16 09:25:30 mlelstv Exp $	*/
+/*	$NetBSD: if_run.c,v 1.17 2016/10/01 07:21:45 mlelstv Exp $	*/
 /*	$OpenBSD: if_run.c,v 1.90 2012/03/24 15:11:04 jsg Exp $	*/
 
 /*-
@@ -23,7 +23,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_run.c,v 1.16 2016/09/16 09:25:30 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_run.c,v 1.17 2016/10/01 07:21:45 mlelstv Exp $");
 
 #include <sys/param.h>
 #include <sys/sockio.h>
@@ -2418,8 +2418,8 @@ run_tx(struct run_softc *sc, struct mbuf
 	struct run_tx_data *data;
 	struct rt2870_txd *txd;
 	struct rt2860_txwi *txwi;
-	uint16_t dur;
-	uint8_t type, mcs, tid, qid, qos = 0;
+	uint16_t dur, mcs;
+	uint8_t type, tid, qid, qos = 0;
 	int error, hasqos, ridx, ctl_ridx, xferlen, txwisize;
 	uint8_t pad;
 

Reply via email to