diff options
author | jamil <jamil@FreeBSD.org> | 1997-12-09 12:41:13 +0000 |
---|---|---|
committer | jamil <jamil@FreeBSD.org> | 1997-12-09 12:41:13 +0000 |
commit | 4953cd7c9e2f6555d567e7792c7ef19bf201ca8a (patch) | |
tree | 29915276800136063640086bdac53f209af41b5d /sys | |
parent | 5dfabcb9508c0d304696221343e0327c4b5962f8 (diff) | |
download | FreeBSD-src-4953cd7c9e2f6555d567e7792c7ef19bf201ca8a.zip FreeBSD-src-4953cd7c9e2f6555d567e7792c7ef19bf201ca8a.tar.gz |
eliminated a previously unnoticde compile warning about use of
__inline, not good to use anyway ?!?!!
Diffstat (limited to 'sys')
-rw-r--r-- | sys/i386/isa/alog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/alog.c b/sys/i386/isa/alog.c index 0f76fd0..334c505 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 */ |