Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/usb Received, not recvieved.
details: https://anonhg.NetBSD.org/src/rev/38a546552d6b
branches: trunk
changeset: 770451:38a546552d6b
user: mbalmer <mbalmer%NetBSD.org@localhost>
date: Mon Oct 17 16:44:02 2011 +0000
description:
Received, not recvieved.
diffstat:
sys/dev/usb/ehcireg.h | 4 ++--
sys/dev/usb/uyurex.c | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (42 lines):
diff -r 34d94430a669 -r 38a546552d6b sys/dev/usb/ehcireg.h
--- a/sys/dev/usb/ehcireg.h Mon Oct 17 16:40:53 2011 +0000
+++ b/sys/dev/usb/ehcireg.h Mon Oct 17 16:44:02 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ehcireg.h,v 1.32 2011/01/18 08:29:24 matt Exp $ */
+/* $NetBSD: ehcireg.h,v 1.33 2011/10/17 16:44:02 mbalmer Exp $ */
/*
* Copyright (c) 2001, 2004 The NetBSD Foundation, Inc.
@@ -361,7 +361,7 @@
/* USB PIDs Register */
#define EHCI_DPR_TOKEN __BITS(7,0)
#define EHCI_DPR_SEND __BITS(15,8)
-#define EHCI_DPR_RECIEVED __BITS(23,16)
+#define EHCI_DPR_RECEIVED __BITS(23,16)
/* Data Registers */
#define EHCI_DEBUG_DATA0123 0x08
#define EHCI_DEBUG_DATA4567 0x0c
diff -r 34d94430a669 -r 38a546552d6b sys/dev/usb/uyurex.c
--- a/sys/dev/usb/uyurex.c Mon Oct 17 16:40:53 2011 +0000
+++ b/sys/dev/usb/uyurex.c Mon Oct 17 16:44:02 2011 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: uyurex.c,v 1.4 2010/11/04 01:58:07 dyoung Exp $ */
+/* $NetBSD: uyurex.c,v 1.5 2011/10/17 16:44:02 mbalmer Exp $ */
/* $OpenBSD: uyurex.c,v 1.3 2010/03/04 03:47:22 deraadt Exp $ */
/*
@@ -253,11 +253,11 @@
switch (buf[0]) {
case CMD_ACK:
if (buf[1] == sc->issueing_cmd) {
- DPRINTF(("ack recieved for cmd 0x%.2x\n", buf[1]));
+ DPRINTF(("ack received for cmd 0x%.2x\n", buf[1]));
sc->accepted_cmd = buf[1];
} else {
- DPRINTF(("cmd-ack mismatch: recved 0x%.2x, expect 0x%.2x\n",
- buf[1], sc->issueing_cmd));
+ DPRINTF(("cmd-ack mismatch: received 0x%.2x, "
+ "expect 0x%.2x\n", buf[1], sc->issueing_cmd));
/* discard previous command */
sc->accepted_cmd = CMD_NONE;
sc->issueing_cmd = CMD_NONE;
Home |
Main Index |
Thread Index |
Old Index