diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-13 06:25:04 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-06-13 06:25:04 +0000 |
commit | deceb0ef8c95816511a4806f7754d4ef3c117786 (patch) | |
tree | 46c689fb1e600ada544f8c8977f3d41848d3f731 /sys/dev/usb/ucycom.c | |
parent | c6b777bbf60e8aa42982d6ed8122f4bc9d13f414 (diff) |
Apply some KNF after the recent removal of macros and type definitions.
No binary change.
ok ray.
Diffstat (limited to 'sys/dev/usb/ucycom.c')
-rw-r--r-- | sys/dev/usb/ucycom.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/dev/usb/ucycom.c b/sys/dev/usb/ucycom.c index 2cfdbb86048..bb703d3c14c 100644 --- a/sys/dev/usb/ucycom.c +++ b/sys/dev/usb/ucycom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ucycom.c,v 1.9 2007/06/12 16:26:36 mbalmer Exp $ */ +/* $OpenBSD: ucycom.c,v 1.10 2007/06/13 06:25:03 mbalmer Exp $ */ /* $NetBSD: ucycom.c,v 1.3 2005/08/05 07:27:47 skrll Exp $ */ /* @@ -107,31 +107,31 @@ int ucycomdebug = 200; #define UCYCOM_ORESET 0x08 struct ucycom_softc { - struct uhidev sc_hdev; - usbd_device_handle sc_udev; + struct uhidev sc_hdev; + usbd_device_handle sc_udev; /* uhidev parameters */ - size_t sc_flen; /* feature report length */ - size_t sc_ilen; /* input report length */ - size_t sc_olen; /* output report length */ + size_t sc_flen; /* feature report length */ + size_t sc_ilen; /* input report length */ + size_t sc_olen; /* output report length */ uint8_t *sc_obuf; uint8_t *sc_ibuf; - uint32_t sc_icnt; + uint32_t sc_icnt; /* settings */ - uint32_t sc_baud; - uint8_t sc_cfg; /* Data format */ - uint8_t sc_mcr; /* Modem control */ - uint8_t sc_msr; /* Modem status */ - uint8_t sc_newmsr; /* from HID intr */ - int sc_swflags; + uint32_t sc_baud; + uint8_t sc_cfg; /* Data format */ + uint8_t sc_mcr; /* Modem control */ + uint8_t sc_msr; /* Modem status */ + uint8_t sc_newmsr; /* from HID intr */ + int sc_swflags; - struct device * sc_subdev; + struct device *sc_subdev; /* flags */ - u_char sc_dying; + u_char sc_dying; }; /* Callback routines */ |