aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJamil J. Weatherbee <jamil@FreeBSD.org>1997-12-09 12:41:13 +0000
committerJamil J. Weatherbee <jamil@FreeBSD.org>1997-12-09 12:41:13 +0000
commit6aa5dc4099a1d9aa9e72387927ed62f4c99f7031 (patch)
treee8f94e715752b3b0d2775c82daff6ceea92de94a /sys
parent4fdababa9f83746cc7b473832bcd64ea32921fd4 (diff)
downloadsrc-6aa5dc4099a1d9aa9e72387927ed62f4c99f7031.tar.gz
src-6aa5dc4099a1d9aa9e72387927ed62f4c99f7031.zip
eliminated a previously unnoticde compile warning about use of
__inline, not good to use anyway ?!?!!
Notes
Notes: svn path=/head/; revision=31654
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/isa/alog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/alog.c b/sys/i386/isa/alog.c
index 0f76fd0ee9a8..334c50527782 100644
--- a/sys/i386/isa/alog.c
+++ b/sys/i386/isa/alog.c
@@ -192,7 +192,7 @@ typedef struct
static int alog_probe (struct isa_device *idp); /* Check for alog board */
static int alog_attach (struct isa_device *idp); /* Take alog board */
static int sync_clock2 (int unit, long period); /* setup clock 2 period */
-static __inline int putfifo (talog_chan *pchan, u_short fifoent);
+static int putfifo (talog_chan *pchan, u_short fifoent);
static int alog_open (dev_t dev, int oflags, int devtype, struct proc *p);
static int alog_close (dev_t dev, int fflag, int devtype, struct proc *p);
static int alog_ioctl (dev_t dev, int cmd, caddr_t data,
@@ -627,7 +627,7 @@ void alogintr (int unit)
/* this will put an entry in fifo, returns 1 if the first item in
* fifo was wiped (overflow) or 0 if everything went fine */
-static int __inline putfifo (talog_chan *pchan, u_short fifoent)
+static int putfifo (talog_chan *pchan, u_short fifoent)
{
pchan->fifo[pchan->fifoend] = fifoent; /* insert the entry in */
pchan->fifoend++; /* one more in fifo */