summaryrefslogtreecommitdiff
path: root/sys/dev/usb/uow.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/uow.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/uow.c')
-rw-r--r--sys/dev/usb/uow.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/dev/usb/uow.c b/sys/dev/usb/uow.c
index 46d5d829a7e..eaa04ce2412 100644
--- a/sys/dev/usb/uow.c
+++ b/sys/dev/usb/uow.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uow.c,v 1.21 2007/06/12 16:26:37 mbalmer Exp $ */
+/* $OpenBSD: uow.c,v 1.22 2007/06/13 06:25:03 mbalmer Exp $ */
/*
* Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org>
@@ -45,19 +45,19 @@
#define UOW_TIMEOUT 1000 /* ms */
struct uow_softc {
- struct device sc_dev;
-
- struct onewire_bus sc_ow_bus;
- struct device * sc_ow_dev;
-
- usbd_device_handle sc_udev;
- usbd_interface_handle sc_iface;
- usbd_pipe_handle sc_ph_ibulk;
- usbd_pipe_handle sc_ph_obulk;
- usbd_pipe_handle sc_ph_intr;
- u_int8_t sc_regs[DS2490_NREGS];
- usbd_xfer_handle sc_xfer;
- u_int8_t sc_fifo[DS2490_DATAFIFOSIZE];
+ struct device sc_dev;
+
+ struct onewire_bus sc_ow_bus;
+ struct device *sc_ow_dev;
+
+ usbd_device_handle sc_udev;
+ usbd_interface_handle sc_iface;
+ usbd_pipe_handle sc_ph_ibulk;
+ usbd_pipe_handle sc_ph_obulk;
+ usbd_pipe_handle sc_ph_intr;
+ u_int8_t sc_regs[DS2490_NREGS];
+ usbd_xfer_handle sc_xfer;
+ u_int8_t sc_fifo[DS2490_DATAFIFOSIZE];
};
USB_DECLARE_DRIVER(uow);