Module Name: src
Committed By: skrll
Date: Sun Apr 3 08:08:27 UTC 2016
Modified Files:
src/sys/dev/usb [nick-nhusb]: uhcireg.h
Log Message:
Fix UHCI_INTR_SPIE defines that was broken in the __BIT conversion
To generate a diff of this commit:
cvs rdiff -u -r1.19.66.5 -r1.19.66.6 src/sys/dev/usb/uhcireg.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/usb/uhcireg.h
diff -u src/sys/dev/usb/uhcireg.h:1.19.66.5 src/sys/dev/usb/uhcireg.h:1.19.66.6
--- src/sys/dev/usb/uhcireg.h:1.19.66.5 Fri Mar 25 17:44:00 2016
+++ src/sys/dev/usb/uhcireg.h Sun Apr 3 08:08:27 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: uhcireg.h,v 1.19.66.5 2016/03/25 17:44:00 skrll Exp $ */
+/* $NetBSD: uhcireg.h,v 1.19.66.6 2016/04/03 08:08:27 skrll Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhcireg.h,v 1.12 1999/11/17 22:33:42 n_hibma Exp $ */
/*
@@ -84,7 +84,7 @@
#define UHCI_INTR_TOCRCIE __BIT(0)
#define UHCI_INTR_RIE __BIT(1)
#define UHCI_INTR_IOCE __BIT(2)
-#define UHCI_INTR_SPIE __BIT(2)
+#define UHCI_INTR_SPIE __BIT(3)
#define UHCI_FRNUM 0x06
#define UHCI_FRNUM_MASK __BITS(9,0)