From owner-cvs-all@FreeBSD.ORG Fri Jan 2 09:22:25 2004 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 73E8A16A4CE; Fri, 2 Jan 2004 09:22:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 805E543D41; Fri, 2 Jan 2004 09:22:13 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i02HMD0B041977; Fri, 2 Jan 2004 09:22:13 -0800 (PST) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i02HMDWO041976; Fri, 2 Jan 2004 09:22:13 -0800 (PST) (envelope-from wpaul) Message-Id: <200401021722.i02HMDWO041976@repoman.freebsd.org> From: Bill Paul Date: Fri, 2 Jan 2004 09:22:13 -0800 (PST) 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, 02 Jan 2004 17:22:25 -0000 wpaul 2004/01/02 09:22:13 PST FreeBSD src repository Modified files: sys/pci if_rl.c Log: Fix detection of RealTek 8129 PCI cards. Apparently, these cards report a hardware rev of 0x00000000. Sadly, the 8169 gigE MAC also reports 0x00000000, so testing against this for exclusion results in both cards being skipped by rl_probe(). Make the 8169 test more specific by matching against both the hwrev and the PCI ID for this chip. PR: kern/60824 Revision Changes Path 1.129 +2 -1 src/sys/pci/if_rl.c