diff options
author | 2000-03-26 15:53:07 +0000 | |
---|---|---|
committer | 2000-03-26 15:53:07 +0000 | |
commit | 7e070378a76e261830eb9f730465e8fc494df099 (patch) | |
tree | 914913bc6b89d65e0a66183c9c5472a4d1bf1123 /sys/dev/usb/uhci.c | |
parent | Remove refCount for suffixes. (diff) | |
download | wireguard-openbsd-7e070378a76e261830eb9f730465e8fc494df099.tar.xz wireguard-openbsd-7e070378a76e261830eb9f730465e8fc494df099.zip |
Fix an obvious typo.
Diffstat (limited to 'sys/dev/usb/uhci.c')
-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)) |