From 6aa5dc4099a1d9aa9e72387927ed62f4c99f7031 Mon Sep 17 00:00:00 2001 From: "Jamil J. Weatherbee" Date: Tue, 9 Dec 1997 12:41:13 +0000 Subject: [PATCH] eliminated a previously unnoticde compile warning about use of __inline, not good to use anyway ?!?!! --- sys/i386/isa/alog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/i386/isa/alog.c b/sys/i386/isa/alog.c index 0f76fd0ee9a..334c5052778 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 */