diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-03-26 15:53:08 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-03-26 15:53:08 +0000 |
commit | 071dfb489aef8afd27ffdbb53019b8703cb1654b (patch) | |
tree | 0f3c74ddcee1eb6dd32118a1c39e848bee82e24c | |
parent | fb9b2e44d677bf04e6eea5912a4ff13abe02c3fc (diff) |
Fix an obvious typo.
-rw-r--r-- | sys/dev/usb/uhci.c | 4 |
1 files 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)) |