aboutsummaryrefslogtreecommitdiff
path: root/sys/pccard/slot.h
diff options
context:
space:
mode:
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 */