From 7e070378a76e261830eb9f730465e8fc494df099 Mon Sep 17 00:00:00 2001 From: aaron Date: Sun, 26 Mar 2000 15:53:07 +0000 Subject: [PATCH] Fix an obvious typo. --- sys/dev/usb/uhci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index 14c9c56b562..37c34d4924c 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhci.c,v 1.7 2000/03/26 08:39:45 aaron Exp $ */ +/* $OpenBSD: uhci.c,v 1.8 2000/03/26 15:53:07 aaron Exp $ */ /* $NetBSD: uhci.c,v 1.87 2000/02/29 21:37:01 augustss Exp $ */ /* @@ -257,7 +257,7 @@ void uhci_dump_tds __P((uhci_soft_td_t *)); void uhci_dump_td __P((uhci_soft_td_t *)); #endif -#define UWRITE1(sc, r, x) bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x)) +#define UWRITE1(sc, r, x) bus_space_write_1((sc)->iot, (sc)->ioh, (r), (x)) #define UWRITE2(sc, r, x) bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x)) #define UWRITE4(sc, r, x) bus_space_write_4((sc)->iot, (sc)->ioh, (r), (x)) #define UREAD1(sc, r) bus_space_read_1((sc)->iot, (sc)->ioh, (r)) -- 2.20.1