diff options
Diffstat (limited to 'sys/dev/usb/uhid.c')
-rw-r--r-- | sys/dev/usb/uhid.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c index 01bba20..c3194dc 100644 --- a/sys/dev/usb/uhid.c +++ b/sys/dev/usb/uhid.c @@ -153,13 +153,13 @@ Static struct cdevsw uhid_cdevsw = { }; #endif -Static void uhid_intr __P((usbd_xfer_handle, usbd_private_handle, - usbd_status)); +Static void uhid_intr(usbd_xfer_handle, usbd_private_handle, + usbd_status); -Static int uhid_do_read __P((struct uhid_softc *, struct uio *uio, int)); -Static int uhid_do_write __P((struct uhid_softc *, struct uio *uio, int)); -Static int uhid_do_ioctl __P((struct uhid_softc *, u_long, caddr_t, int, - struct proc *)); +Static int uhid_do_read(struct uhid_softc *, struct uio *uio, int); +Static int uhid_do_write(struct uhid_softc *, struct uio *uio, int); +Static int uhid_do_ioctl(struct uhid_softc *, u_long, caddr_t, int, + struct proc *); USB_DECLARE_DRIVER(uhid); |