summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uftdi.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/uftdi.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/uftdi.c')
-rw-r--r--sys/dev/usb/uftdi.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/usb/uftdi.c b/sys/dev/usb/uftdi.c
index f25d0674509..7db56f45a8f 100644
--- a/sys/dev/usb/uftdi.c
+++ b/sys/dev/usb/uftdi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uftdi.c,v 1.39 2007/06/12 16:26:36 mbalmer Exp $ */
+/* $OpenBSD: uftdi.c,v 1.40 2007/06/13 06:25:03 mbalmer Exp $ */
/* $NetBSD: uftdi.c,v 1.14 2003/02/23 04:20:07 simonb Exp $ */
/*
@@ -85,21 +85,21 @@ int uftdidebug = 0;
#define UFTDIOBUFSIZE 64
struct uftdi_softc {
- struct device sc_dev; /* base device */
- usbd_device_handle sc_udev; /* device */
- usbd_interface_handle sc_iface; /* interface */
+ struct device sc_dev; /* base device */
+ usbd_device_handle sc_udev; /* device */
+ usbd_interface_handle sc_iface; /* interface */
- enum uftdi_type sc_type;
- u_int sc_hdrlen;
+ enum uftdi_type sc_type;
+ u_int sc_hdrlen;
- u_char sc_msr;
- u_char sc_lsr;
+ u_char sc_msr;
+ u_char sc_lsr;
- struct device * sc_subdev;
+ struct device *sc_subdev;
- u_char sc_dying;
+ u_char sc_dying;
- u_int last_lcr;
+ u_int last_lcr;
};
void uftdi_get_status(void *, int portno, u_char *lsr, u_char *msr);