Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ic Pull in changes from OpenBSD r1.34:



details:   https://anonhg.NetBSD.org/src/rev/1a603e20f4bf
branches:  trunk
changeset: 812033:1a603e20f4bf
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Fri Nov 27 21:16:17 2015 +0000

description:
Pull in changes from OpenBSD r1.34:
> Fix values of AR9003 Rx queue software indexes. Both indexes were zero,
> which is obviously not intended given how they are used in the ar9003 code.
> No currently working athn(4) devices are affected by this change.

diffstat:

 sys/dev/ic/athnvar.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 78dcea350dd4 -r 1a603e20f4bf sys/dev/ic/athnvar.h
--- a/sys/dev/ic/athnvar.h      Fri Nov 27 20:59:47 2015 +0000
+++ b/sys/dev/ic/athnvar.h      Fri Nov 27 21:16:17 2015 +0000
@@ -1,5 +1,5 @@
-/*     $NetBSD: athnvar.h,v 1.4 2013/04/06 16:50:48 martin Exp $       */
-/*     $OpenBSD: athnvar.h,v 1.33 2012/10/20 09:54:20 stsp Exp $       */
+/*     $NetBSD: athnvar.h,v 1.5 2015/11/27 21:16:17 jmcneill Exp $     */
+/*     $OpenBSD: athnvar.h,v 1.34 2013/10/21 16:13:49 stsp Exp $       */
 
 /*-
  * Copyright (c) 2009 Damien Bergamini <damien.bergamini%free.fr@localhost>
@@ -240,7 +240,7 @@
 
 /* Rx queue software indexes. */
 #define ATHN_QID_LP            0
-#define ATHN_QID_HP            0
+#define ATHN_QID_HP            1
 
 /* Tx queue software indexes. */
 #define ATHN_QID_AC_BE         0



Home | Main Index | Thread Index | Old Index