diff options
author | joe <joe@FreeBSD.org> | 2002-03-16 12:44:21 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-03-16 12:44:21 +0000 |
commit | 6c63fbbb0ce1ddb7ddd300846dc26ee0cb394c60 (patch) | |
tree | 756028c4a6bf248a3efd69c11acf7e29d11b50aa /sys/dev/usb/uhcivar.h | |
parent | 5bfc3567ae33db403bcd3c94c80335e8a81a9641 (diff) | |
download | FreeBSD-src-6c63fbbb0ce1ddb7ddd300846dc26ee0cb394c60.zip FreeBSD-src-6c63fbbb0ce1ddb7ddd300846dc26ee0cb394c60.tar.gz |
Merge from NetBSD:
ohcivar.h (1.22), uhcivar.h (1.29):
============================================================
date: 2000/04/25 09:20:55; author: augustss;
Move the size of the mapped bus_space region into the bus
independent softc.
============================================================
ohci.c (1.88), uhci.c (1.112):
============================================================
date: 2000/04/25 14:28:13; author: augustss;
Insert (very conservative!) bus_space_barrier() calls at
all register accesses.
The bus_space(9) man page says you've gotta have them...
============================================================
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index 7afd849..a47ff25 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -1,4 +1,4 @@ -/* $NetBSD: uhcivar.h,v 1.28 2000/04/06 23:44:21 augustss Exp $ */ +/* $NetBSD: uhcivar.h,v 1.29 2000/04/25 09:20:55 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -134,6 +134,7 @@ typedef struct uhci_softc { struct usbd_bus sc_bus; /* base device */ bus_space_tag_t iot; bus_space_handle_t ioh; + bus_size_t sc_size; #if defined(__FreeBSD__) void *ih; |