Module Name:    src
Committed By:   jmcneill
Date:           Fri Nov 27 21:16:17 UTC 2015

Modified Files:
        src/sys/dev/ic: athnvar.h

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/ic/athnvar.h

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/ic/athnvar.h
diff -u src/sys/dev/ic/athnvar.h:1.4 src/sys/dev/ic/athnvar.h:1.5
--- src/sys/dev/ic/athnvar.h:1.4	Sat Apr  6 16:50:48 2013
+++ src/sys/dev/ic/athnvar.h	Fri Nov 27 21:16:17 2015
@@ -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.bergam...@free.fr>
@@ -240,7 +240,7 @@ struct athn_serdes {
 
 /* 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

Reply via email to