summaryrefslogtreecommitdiff
path: root/sys/dev/usb/usb.c
diff options
context:
space:
mode:
authorMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-13 06:25:04 +0000
committerMarc Balmer <mbalmer@cvs.openbsd.org>2007-06-13 06:25:04 +0000
commitdeceb0ef8c95816511a4806f7754d4ef3c117786 (patch)
tree46c689fb1e600ada544f8c8977f3d41848d3f731 /sys/dev/usb/usb.c
parentc6b777bbf60e8aa42982d6ed8122f4bc9d13f414 (diff)
Apply some KNF after the recent removal of macros and type definitions.
No binary change. ok ray.
Diffstat (limited to 'sys/dev/usb/usb.c')
-rw-r--r--sys/dev/usb/usb.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c
index 43006864b9d..4b731848ee8 100644
--- a/sys/dev/usb/usb.c
+++ b/sys/dev/usb/usb.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usb.c,v 1.53 2007/06/12 16:26:37 mbalmer Exp $ */
+/* $OpenBSD: usb.c,v 1.54 2007/06/13 06:25:03 mbalmer Exp $ */
/* $NetBSD: usb.c,v 1.77 2003/01/01 00:10:26 thorpej Exp $ */
/*
@@ -94,13 +94,13 @@ int usb_noexplore = 0;
#endif
struct usb_softc {
- struct device sc_dev; /* base device */
- usbd_bus_handle sc_bus; /* USB controller */
+ struct device sc_dev; /* base device */
+ usbd_bus_handle sc_bus; /* USB controller */
struct usbd_port sc_port; /* dummy port for root hub */
- struct proc * sc_event_thread;
+ struct proc *sc_event_thread;
- char sc_dying;
+ char sc_dying;
};
TAILQ_HEAD(, usb_task) usb_all_tasks;