summaryrefslogtreecommitdiff
path: root/sys/arch/loongson/dev
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-04-16 14:55:24 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-04-16 14:55:24 +0000
commit9fdd059f7bfbfcba939ff0be60e47d1c8da0abe9 (patch)
tree217af16803e448dde22deb373b46d33072a79172 /sys/arch/loongson/dev
parentfd6ba7c14eda900f46eb2313827ddc314acca02b (diff)
Get rid of various 'typedef struct' definitions and use plain structure
definitions instead. We don't change usb.h for now to stay compatible with userland. missed bits from previous change; ok mpi
Diffstat (limited to 'sys/arch/loongson/dev')
-rw-r--r--sys/arch/loongson/dev/ohci_voyager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/loongson/dev/ohci_voyager.c b/sys/arch/loongson/dev/ohci_voyager.c
index 64adbb070c0..7987a6d3ab5 100644
--- a/sys/arch/loongson/dev/ohci_voyager.c
+++ b/sys/arch/loongson/dev/ohci_voyager.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ohci_voyager.c,v 1.4 2010/12/14 18:44:23 miod Exp $ */
+/* $OpenBSD: ohci_voyager.c,v 1.5 2013/04/16 14:55:22 deraadt Exp $ */
/* OpenBSD: ohci_pci.c,v 1.33 2008/06/26 05:42:17 ray Exp */
/* $NetBSD: ohci_pci.c,v 1.23 2002/10/02 16:51:47 thorpej Exp $ */
@@ -68,8 +68,8 @@ void ohci_voyager_attach(struct device *, struct device *, void *);
void ohci_voyager_attach_deferred(struct device *);
struct ohci_voyager_softc {
- ohci_softc_t sc;
- void *sc_ih;
+ struct ohci_softc sc;
+ void *sc_ih;
};
struct cfattach ohci_voyager_ca = {