summaryrefslogtreecommitdiffstats
path: root/sys/pccard/slot.h
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2001-03-22 05:49:18 +0000
committerimp <imp@FreeBSD.org>2001-03-22 05:49:18 +0000
commitbf947a58aad2f2c5b70fc4d775aa2b24501702df (patch)
tree91fbb0480be3a6bd5b2953af7365140032c784a4 /sys/pccard/slot.h
parent6e66a78b31232b05de35c238d18f7a700e113277 (diff)
downloadFreeBSD-src-bf947a58aad2f2c5b70fc4d775aa2b24501702df.zip
FreeBSD-src-bf947a58aad2f2c5b70fc4d775aa2b24501702df.tar.gz
Axe a few __P() while I'm in the neighborhood.
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 f43122c..67f756d 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 */
OpenPOWER on IntegriCloud