From owner-cvs-all Wed Jan 27 06:40:35 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21877 for cvs-all-outgoing; Wed, 27 Jan 1999 06:40:35 -0800 (PST) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from smtp04.wxs.nl (smtp04.wxs.nl [195.121.6.59]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21870; Wed, 27 Jan 1999 06:40:26 -0800 (PST) (envelope-from asmodai@wxs.nl) Received: from daemon.ninth-circle.org ([195.121.56.110]) by smtp04.wxs.nl (Netscape Messaging Server 3.6) with ESMTP id AAA2887; Wed, 27 Jan 1999 15:40:20 +0100 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <30378.917444267@critter.freebsd.dk> Date: Wed, 27 Jan 1999 15:48:48 +0100 (CET) Organization: Ninth Circle Enterprises From: Jeroen Ruigrok/Asmodai To: Poul-Henning Kamp Subject: RE: LINT doesn't compile ?? Cc: committers@FreeBSD.ORG Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk On 27-Jan-99 Poul-Henning Kamp wrote: > ../../dev/usb/uhci.c: In function `uhci_dumpregs': > ../../dev/usb/uhci.c:406: `UHCI_LEGSUP' undeclared (first use this > function) > ../../dev/usb/uhci.c:406: (Each undeclared identifier is reported only > once > ../../dev/usb/uhci.c:406: for each function it appears in.) > machine/cpufunc.h:284: warning: inlining failed in call to `inw' > ../../dev/usb/uhci.c:406: warning: called from here > *** Error code 1 (continuing) > `kernel' not remade because of errors. It appears that USB_DEBUG suffers from bitrot... the UHCI_LEGSUP only appears in uhci.c and not in any other file. try this please: --- /usr/src/sys/dev/usb/uhci.c.orig Sat Jan 23 18:08:45 1999 +++ /usr/src/sys/dev/usb/uhci.c Wed Jan 27 15:35:10 1999 @@ -402,8 +402,8 @@ UREAD4(sc, UHCI_FLBASEADDR), UREAD1(sc, UHCI_SOF), UREAD2(sc, UHCI_PORTSC1), - UREAD2(sc, UHCI_PORTSC2), - UREAD2(sc, UHCI_LEGSUP)); + UREAD2(sc, UHCI_PORTSC2); +/* UREAD2(sc, UHCI_LEGSUP)); */ } int uhci_longtd = 1; --- Jeroen Ruigrok van der Werven It's a Dance of Energy, asmodai(at)wxs.nl when the Mind goes Binary... Network/Security Specialist BSD & picoBSD: The Power to Serve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message