diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 14:23:32 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-05-07 14:23:32 +0000 |
commit | 28230a763f4daad5c035f53b8bc38824b6eb52a1 (patch) | |
tree | de87974c16ba19da8e27cb328005691889f29e5f /sys/dev/usb/urio.c | |
parent | ef8c625797760d1da227afa4f4f4f07a1fa1ded5 (diff) | |
download | FreeBSD-src-28230a763f4daad5c035f53b8bc38824b6eb52a1.zip FreeBSD-src-28230a763f4daad5c035f53b8bc38824b6eb52a1.tar.gz |
More static -> Static to keep OpenBSD happy.
Diffstat (limited to 'sys/dev/usb/urio.c')
-rw-r--r-- | sys/dev/usb/urio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/urio.c b/sys/dev/usb/urio.c index fc3890a..fc1d8da 100644 --- a/sys/dev/usb/urio.c +++ b/sys/dev/usb/urio.c @@ -117,7 +117,7 @@ d_ioctl_t urioioctl; #define URIO_CDEV_MAJOR 143 #if (__FreeBSD__ >= 4) -static struct cdevsw urio_cdevsw = { +Static struct cdevsw urio_cdevsw = { urioopen, urioclose, urioread, uriowrite, urioioctl, nopoll, nommap, nostrategy, "urio", URIO_CDEV_MAJOR,nodump, nopsize, @@ -127,7 +127,7 @@ static struct cdevsw urio_cdevsw = { ((UE_GET_DIR(p) == UE_DIR_OUT) ? RIO_OUT :\ RIO_NODIR)) #else -static struct cdevsw urio_cdevsw = { +Static struct cdevsw urio_cdevsw = { urioopen, urioclose, urioread, uriowrite, urioioctl, nostop, nullreset, nodevtotty, seltrue, nommap, nostrat, @@ -695,7 +695,7 @@ USB_DETACH(urio) #endif /* defined(__NetBSD__) || defined(__OpenBSD__) */ #if defined(__FreeBSD__) -static int +Static int urio_detach(device_t self) { DPRINTF(("%s: disconnected\n", USBDEVNAME(self))); |