diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 05:14:42 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 05:14:42 +0000 |
commit | eddc6122c99ccaa9c147f78f44588a5757d3f046 (patch) | |
tree | 5fcd19c5c990fd9d830071523f9c3dc5cfb35586 /sys/dev | |
parent | 62379fef927268e564719e3e766bb3900ef387c7 (diff) | |
download | FreeBSD-src-eddc6122c99ccaa9c147f78f44588a5757d3f046.zip FreeBSD-src-eddc6122c99ccaa9c147f78f44588a5757d3f046.tar.gz |
Remove __P.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/atkbdc/psm.c | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/sys/dev/atkbdc/psm.c b/sys/dev/atkbdc/psm.c index 6be30d4..9afb9f3 100644 --- a/sys/dev/atkbdc/psm.c +++ b/sys/dev/atkbdc/psm.c @@ -227,15 +227,15 @@ typedef struct old_mousemode { } old_mousemode_t; /* packet formatting function */ -typedef int packetfunc_t __P((struct psm_softc *, unsigned char *, - int *, int, mousestatus_t *)); +typedef int packetfunc_t(struct psm_softc *, unsigned char *, + int *, int, mousestatus_t *); /* function prototypes */ -static void psmidentify __P((driver_t *, device_t)); -static int psmprobe __P((device_t)); -static int psmattach __P((device_t)); -static int psmdetach __P((device_t)); -static int psmresume __P((device_t)); +static void psmidentify(driver_t *, device_t); +static int psmprobe(device_t); +static int psmattach(device_t); +static int psmdetach(device_t); +static int psmresume(device_t); static d_open_t psmopen; static d_close_t psmclose; @@ -243,30 +243,30 @@ static d_read_t psmread; static d_ioctl_t psmioctl; static d_poll_t psmpoll; -static int enable_aux_dev __P((KBDC)); -static int disable_aux_dev __P((KBDC)); -static int get_mouse_status __P((KBDC, int *, int, int)); -static int get_aux_id __P((KBDC)); -static int set_mouse_sampling_rate __P((KBDC, int)); -static int set_mouse_scaling __P((KBDC, int)); -static int set_mouse_resolution __P((KBDC, int)); -static int set_mouse_mode __P((KBDC)); -static int get_mouse_buttons __P((KBDC)); -static int is_a_mouse __P((int)); -static void recover_from_error __P((KBDC)); -static int restore_controller __P((KBDC, int)); -static int doinitialize __P((struct psm_softc *, mousemode_t *)); -static int doopen __P((struct psm_softc *, int)); -static int reinitialize __P((struct psm_softc *, int)); -static char *model_name __P((int)); -static void psmintr __P((void *)); -static void psmtimeout __P((void *)); +static int enable_aux_dev(KBDC); +static int disable_aux_dev(KBDC); +static int get_mouse_status(KBDC, int *, int, int); +static int get_aux_id(KBDC); +static int set_mouse_sampling_rate(KBDC, int); +static int set_mouse_scaling(KBDC, int); +static int set_mouse_resolution(KBDC, int); +static int set_mouse_mode(KBDC); +static int get_mouse_buttons(KBDC); +static int is_a_mouse(int); +static void recover_from_error(KBDC); +static int restore_controller(KBDC, int); +static int doinitialize(struct psm_softc *, mousemode_t *); +static int doopen(struct psm_softc *, int); +static int reinitialize(struct psm_softc *, int); +static char *model_name(int); +static void psmintr(void *); +static void psmtimeout(void *); /* vendor specific features */ -typedef int probefunc_t __P((struct psm_softc *)); +typedef int probefunc_t(struct psm_softc *); -static int mouse_id_proc1 __P((KBDC, int, int, int *)); -static int mouse_ext_command __P((KBDC, int)); +static int mouse_id_proc1(KBDC, int, int, int *); +static int mouse_ext_command(KBDC, int); static probefunc_t enable_groller; static probefunc_t enable_gmouse; static probefunc_t enable_aglide; @@ -277,7 +277,7 @@ static probefunc_t enable_4dmouse; static probefunc_t enable_4dplus; static probefunc_t enable_mmanplus; static probefunc_t enable_versapad; -static int tame_mouse __P((struct psm_softc *, mousestatus_t *, unsigned char *)); +static int tame_mouse(struct psm_softc *, mousestatus_t *, unsigned char *); static struct { int model; |