diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-07-17 18:41:20 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-07-17 18:41:20 +0000 |
commit | 66ea27ead1b92a8730555578c119d6f134ff8eb9 (patch) | |
tree | e5381d85afaac8614a52e652d0b23f4007e4b92f /sys/dev/usb/uhcivar.h | |
parent | cb5f5af3e064bdc4df0430305632db96551d5fa3 (diff) | |
download | FreeBSD-src-66ea27ead1b92a8730555578c119d6f134ff8eb9.zip FreeBSD-src-66ea27ead1b92a8730555578c119d6f134ff8eb9.tar.gz |
Remove __P prototypes to reduce diffs between the NetBSD and FreeBSD
versions.
Diffstat (limited to 'sys/dev/usb/uhcivar.h')
-rw-r--r-- | sys/dev/usb/uhcivar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h index 303a429..5e73e71 100644 --- a/sys/dev/usb/uhcivar.h +++ b/sys/dev/usb/uhcivar.h @@ -178,13 +178,13 @@ typedef struct uhci_softc { device_ptr_t sc_child; /* /dev/usb device */ } uhci_softc_t; -usbd_status uhci_init __P((uhci_softc_t *)); -int uhci_intr __P((void *)); +usbd_status uhci_init(uhci_softc_t *); +int uhci_intr(void *); #if defined(__NetBSD__) || defined(__OpenBSD__) -int uhci_detach __P((uhci_softc_t *, int)); -int uhci_activate __P((device_ptr_t, enum devact)); +int uhci_detach(uhci_softc_t *, int); +int uhci_activate(device_ptr_t, enum devact); #endif -void uhci_shutdown __P((void *v)); -void uhci_power __P((int state, void *priv)); +void uhci_shutdown(void *v); +void uhci_power(int state, void *priv); |