From owner-cvs-all@FreeBSD.ORG Fri Aug 15 15:46:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F2D637B401; Fri, 15 Aug 2003 15:46:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE5FC43FCB; Fri, 15 Aug 2003 15:46:47 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7FMkl0U097121; Fri, 15 Aug 2003 15:46:47 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7FMklQ1097120; Fri, 15 Aug 2003 15:46:47 -0700 (PDT) Message-Id: <200308152246.h7FMklQ1097120@repoman.freebsd.org> From: Bill Paul Date: Fri, 15 Aug 2003 15:46:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_rl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2003 22:46:48 -0000 wpaul 2003/08/15 15:46:47 PDT FreeBSD src repository Modified files: sys/pci if_rl.c Log: It appears in some configurations with an on-board RTL8100 chip (in this case, a "Vortex86" mini PC), the PCI device ID value in the EEPROM (0x8100) does not agree with the PCI device ID returned by pci_get_device() (0x8139). This means that while rl_probe() matches the device, rl_attach() doesn't. Work around this by adding an entry to the rl_devs table for the 8100 with a device ID of 0x8100. Also, get rid of extra instance of __FBSDID(). One is enough. Revision Changes Path 1.111 +0 -2 src/sys/pci/if_rl.c