From owner-cvs-all Wed Oct 27 9:53:39 1999 Delivered-To: cvs-all@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 3B9DC1503C; Wed, 27 Oct 1999 09:53:07 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn41.imasy.or.jp [202.227.24.233]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.01) with ESMTP id BAA24752; Thu, 28 Oct 1999 01:53:01 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Message-Id: <199910271653.BAA24752@tasogare.imasy.or.jp> To: mdodd@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ep if_ep.c if_ep_eisa.c if_ep_isa.c if_ep_mca.c if_ep_pccard.c if_epreg.h if_epvar.h In-Reply-To: Your message of "Tue, 26 Oct 1999 23:25:17 -0700 (PDT)" <199910270625.XAA26605@freefall.freebsd.org> References: <199910270625.XAA26605@freefall.freebsd.org> X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 28 Oct 1999 01:52:56 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 980905(IM100) Lines: 44 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Hi, > mdodd 1999/10/26 23:25:17 PDT > > Modified files: > sys/dev/ep if_ep.c if_ep_eisa.c if_ep_isa.c > if_ep_mca.c if_ep_pccard.c if_epreg.h > if_epvar.h This seem to break GENERIC kernel build as follows. linking kernel isa_compat.o(.data+0x44): undefined reference to `epdriver' *** Error code 1 1 error Did you forget commit sys/i386/isa/isa_compat.h? I'm not sure this patch is correct... Index: isa_compat.h =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/isa_compat.h,v retrieving revision 1.16 diff -u -r1.16 isa_compat.h --- isa_compat.h 1999/10/16 06:26:44 1.16 +++ isa_compat.h 1999/10/27 16:48:46 @@ -101,7 +101,6 @@ extern struct isa_driver csdriver; extern struct isa_driver cxdriver; extern struct isa_driver eldriver; -extern struct isa_driver epdriver; extern struct isa_driver fedriver; extern struct isa_driver iedriver; extern struct isa_driver ledriver; @@ -249,9 +248,6 @@ #if NIE > 0 { INTR_TYPE_NET, &iedriver }, -#endif -#if NEP > 0 - { INTR_TYPE_NET, &epdriver }, #endif #if NLE > 0 { INTR_TYPE_NET, &ledriver }, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message