Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb mcs is a 16bit value.



details:   https://anonhg.NetBSD.org/src/rev/6c212a397e9c
branches:  trunk
changeset: 348023:6c212a397e9c
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Sat Oct 01 07:21:45 2016 +0000

description:
mcs is a 16bit value.

diffstat:

 sys/dev/usb/if_run.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 7c85a9715bc6 -r 6c212a397e9c sys/dev/usb/if_run.c
--- a/sys/dev/usb/if_run.c      Sat Oct 01 04:42:54 2016 +0000
+++ b/sys/dev/usb/if_run.c      Sat Oct 01 07:21:45 2016 +0000
@@ -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 @@
        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;
 



Home | Main Index | Thread Index | Old Index