From owner-freebsd-current@FreeBSD.ORG Sat Oct 18 12:32:51 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAFB816A4BF for ; Sat, 18 Oct 2003 12:32:51 -0700 (PDT) Received: from ipng.org.uk (public1-blac3-3-cust241.manc.broadband.ntl.com [213.106.20.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id C33F843FCB for ; Sat, 18 Oct 2003 12:32:50 -0700 (PDT) (envelope-from stu@ipng.org.uk) Received: from [192.168.2.2] (helo=icecold.stu) by ipng.org.uk with esmtp (Exim 4.22) id 1AAwoG-0004Yj-8K for freebsd-current@freebsd.org; Sat, 18 Oct 2003 20:32:20 +0100 Received: from icecold.stu (localhost [127.0.0.1]) by icecold.stu (8.12.7/8.12.7) with ESMTP id h9IJWg1n056708 for ; Sat, 18 Oct 2003 20:32:42 +0100 (BST) (envelope-from stu@ipng.org.uk) Received: (from stu@localhost) by icecold.stu (8.12.7/8.12.7/Submit) id h9IJWgsA056707 for freebsd-current@freebsd.org; Sat, 18 Oct 2003 20:32:42 +0100 (BST) X-Authentication-Warning: icecold.stu: stu set sender to stu@ipng.org.uk using -f Date: Sat, 18 Oct 2003 20:32:41 +0100 From: Stuart Walsh To: freebsd-current@freebsd.org Message-ID: <20031018193241.GA18143@icecold.stu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: if_ep compile error X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2003 19:32:52 -0000 Hi, Looks like someone missed a file when updating the 'ep' driver. Simple diff follows: RCS file: /home/ncvs/src/sys/dev/ep/if_ep_eisa.c,v retrieving revision 1.25 diff -u -r1.25 if_ep_eisa.c --- if_ep_eisa.c 24 Aug 2003 17:46:05 -0000 1.25 +++ if_ep_eisa.c 18 Oct 2003 19:29:38 -0000 @@ -215,7 +215,7 @@ irq = 2; GO_WINDOW(0); - SET_IRQ(BASE, irq); + SET_IRQ(sc, irq); if ((error = ep_attach(sc))) { device_printf(dev, "ep_attach() failed! (%d)\n", error); Regards, Stuart