diff options
author | 2007-06-13 06:25:03 +0000 | |
---|---|---|
committer | 2007-06-13 06:25:03 +0000 | |
commit | a7d479f565b95a22df641ebeacc9bb145b333213 (patch) | |
tree | dfffa895277477e4b0c142f01fc8b9217a47066d /sys/dev/usb/usb.c | |
parent | There is no need to set RTAX_NETMASK on RTF_HOST routes. RTAX_NETMASK will (diff) | |
download | wireguard-openbsd-a7d479f565b95a22df641ebeacc9bb145b333213.tar.xz wireguard-openbsd-a7d479f565b95a22df641ebeacc9bb145b333213.zip |
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.c | 10 |
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; |