aboutsummaryrefslogtreecommitdiff
path: root/sys/pccard/slot.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-03-22 05:49:18 +0000
committerWarner Losh <imp@FreeBSD.org>2001-03-22 05:49:18 +0000
commitcc2310a9497f0e4ef7e3d14736796594bcffa9c6 (patch)
tree3004983b01c04795c7697df84f2ac2e47a65245d /sys/pccard/slot.h
parent2873ce752bc869a6b2e6598320e6950e90a80387 (diff)
downloadsrc-cc2310a9497f0e4ef7e3d14736796594bcffa9c6.tar.gz
src-cc2310a9497f0e4ef7e3d14736796594bcffa9c6.zip
Axe a few __P() while I'm in the neighborhood.
Notes
Notes: svn path=/head/; revision=74633
Diffstat (limited to 'sys/pccard/slot.h')
-rw-r--r--sys/pccard/slot.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/pccard/slot.h b/sys/pccard/slot.h
index f43122c52f7b..67f756df5617 100644
--- a/sys/pccard/slot.h
+++ b/sys/pccard/slot.h
@@ -54,19 +54,19 @@
*/
struct slot;
struct slot_ctrl {
- int (*mapmem) __P((struct slot *, int));
+ int (*mapmem)(struct slot *, int);
/* Map memory */
- int (*mapio) __P((struct slot *, int));
+ int (*mapio)(struct slot *, int);
/* Map io */
- void (*reset) __P((void *));
+ void (*reset)(void *);
/* init */
- void (*disable) __P((struct slot *));
+ void (*disable)(struct slot *);
/* Disable slot */
- int (*power) __P((struct slot *));
+ int (*power)(struct slot *);
/* Set power values */
- int (*ioctl) __P((struct slot *, int, caddr_t));
+ int (*ioctl)(struct slot *, int, caddr_t);
/* ioctl to lower level */
- void (*resume) __P((struct slot *));
+ void (*resume)(struct slot *);
/* suspend/resume support */
int maxmem; /* Number of allowed memory windows */
int maxio; /* Number of allowed I/O windows */