From owner-cvs-all Thu Dec 20 5:15: 1 2001 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id C421B37B405; Thu, 20 Dec 2001 05:14:54 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id AAA11755; Fri, 21 Dec 2001 00:14:53 +1100 Date: Fri, 21 Dec 2001 00:14:52 +1100 (EST) From: Bruce Evans X-X-Sender: To: Peter Wemm Cc: , Subject: Re: cvs commit: src/sys/dev/fxp if_fxp.c In-Reply-To: <200112190817.fBJ8HPB86284@freefall.freebsd.org> Message-ID: <20011221001216.Q673-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 19 Dec 2001, Peter Wemm wrote: > peter 2001/12/19 00:17:25 PST > > Modified files: (Branch: RELENG_4) > sys/dev/fxp if_fxp.c > Log: > You cannot declare a function __inline *after* you have called it! > ../../dev/fxp/if_fxp.c: In function `fxp_intr': > ../../dev/fxp/if_fxp.c:174: warning: can't inline call to `fxp_intr_body' > ../../dev/fxp/if_fxp.c:1183: warning: called from here > This is a left-over DEVICE_POLLING change. Actually, you can call it (if it is has a suitable explicit or implicit declaration), but it won't be inlined. This is usually a mistake, so we compile with -Winline to produce the above warning. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message