From 9fdd059f7bfbfcba939ff0be60e47d1c8da0abe9 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 16 Apr 2013 14:55:24 +0000 Subject: 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 --- sys/arch/loongson/dev/ohci_voyager.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/arch/loongson/dev') 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 = { -- cgit v1.2.3