From b598f559b2947bb9582b53221185bb27d86cd68f Mon Sep 17 00:00:00 2001 From: bde Date: Wed, 15 Apr 1998 17:47:40 +0000 Subject: Support compiling with `gcc -ansi'. --- sys/pccard/pcic.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sys/pccard/pcic.c') diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 03deeb9..04efe59 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -100,14 +100,14 @@ static struct slot_ctrl cinfo; /* * Read a register from the PCIC. */ -static inline unsigned char +static __inline unsigned char getb1(struct pcic_slot *sp, int reg) { outb(sp->index, sp->offset + reg); return inb(sp->data); } -static inline unsigned char +static __inline unsigned char getb2(struct pcic_slot *sp, int reg) { return (sp->regs[reg]); @@ -116,14 +116,14 @@ getb2(struct pcic_slot *sp, int reg) /* * Write a register on the PCIC */ -static inline void +static __inline void putb1(struct pcic_slot *sp, int reg, unsigned char val) { outb(sp->index, sp->offset + reg); outb(sp->data, val); } -static inline void +static __inline void putb2(struct pcic_slot *sp, int reg, unsigned char val) { sp->regs[reg] = val; @@ -132,7 +132,7 @@ putb2(struct pcic_slot *sp, int reg, unsigned char val) /* * Clear bit(s) of a register. */ -static inline void +static __inline void clrb(struct pcic_slot *sp, int reg, unsigned char mask) { sp->putb(sp, reg, sp->getb(sp, reg) & ~mask); @@ -141,7 +141,7 @@ clrb(struct pcic_slot *sp, int reg, unsigned char mask) /* * Set bit(s) of a register */ -static inline void +static __inline void setb(struct pcic_slot *sp, int reg, unsigned char mask) { sp->putb(sp, reg, sp->getb(sp, reg) | mask); @@ -150,7 +150,7 @@ setb(struct pcic_slot *sp, int reg, unsigned char mask) /* * Write a 16 bit value to 2 adjacent PCIC registers */ -static inline void +static __inline void putw(struct pcic_slot *sp, int reg, unsigned short word) { sp->putb(sp, reg, word & 0xFF); -- cgit v1.1