From owner-cvs-all@FreeBSD.ORG Sun Mar 21 11:57:13 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 CFF5916A4CE; Sun, 21 Mar 2004 11:57:13 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3CF943D1D; Sun, 21 Mar 2004 11:57: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 i2LJv5Ge082176; Sun, 21 Mar 2004 11:57:05 -0800 (PST) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i2LJurl5082170; Sun, 21 Mar 2004 11:56:53 -0800 (PST) (envelope-from wpaul) Message-Id: <200403211956.i2LJurl5082170@repoman.freebsd.org> From: Bill Paul Date: Sun, 21 Mar 2004 11:56:53 -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/dev/if_ndis if_ndis_pccard.c if_ndis_pci.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: Sun, 21 Mar 2004 19:57:13 -0000 wpaul 2004/03/21 11:56:51 PST FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis_pccard.c if_ndis_pci.c Log: Make if_ndis_pci.c and if_ndis_pccard.c use bus_alloc_resource() again instead of bus_alloc_resource_any() to restore source compatibility with 5.2-REL and 5.2.1-REL systems. bus_alloc_resource_any() doesn't really do anything besides hide some of bus_alloc_resource()'s arguments from us, and in my opinion this isn't worth breaking backwards compatibility for people who want to use the NDISulator code on 5.2.x. Revision Changes Path 1.4 +4 -4 src/sys/dev/if_ndis/if_ndis_pccard.c 1.5 +8 -8 src/sys/dev/if_ndis/if_ndis_pci.c