Date: Thu, 28 Oct 1999 01:52:56 +0900 From: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org> 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 Message-ID: <199910271653.BAA24752@tasogare.imasy.or.jp> 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>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199910271653.BAA24752>