From owner-cvs-src@FreeBSD.ORG Sat Dec 3 19:52:21 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AB4A16A41F; Sat, 3 Dec 2005 19:52:21 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2608A43D53; Sat, 3 Dec 2005 19:52:21 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id jB3JqLR0061314; Sat, 3 Dec 2005 19:52:21 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jB3JqLVd061313; Sat, 3 Dec 2005 19:52:21 GMT (envelope-from marius) Message-Id: <200512031952.jB3JqLVd061313@repoman.freebsd.org> From: Marius Strobl Date: Sat, 3 Dec 2005 19:52:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/sparc64/include ofw_upa.h src/sys/sparc64/pci ofw_pci.h psycho.c src/sys/sparc64/isa ofw_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Dec 2005 19:52:21 -0000 marius 2005-12-03 19:52:21 UTC FreeBSD src repository Modified files: sys/sparc64/include ofw_upa.h sys/sparc64/pci ofw_pci.h psycho.c sys/sparc64/isa ofw_isa.c Log: - Move the declaration of struct upa_ranges and the UPA_RANGE_* macros from sys/sparc64/include/ofw_upa.h to sys/sparc64/pci/ofw_pci.h and rename them to struct ofw_pci_ranges and OFW_PCI_RANGE_* respectively. This ranges struct only applies to host-PCI bridges but no to other bridges found on UPA. At the same time it applies to all host-PCI bridges regardless of whether the interconnection bus is Fireplane/ Safari, JBus or UPA. - While here rename the PCI_CS_* macros in sys/sparc64/pci/ofw_pci.h to OFW_PCI_CS_* in order to be consistent and change this header to use uintXX_t instead of u_intXX_t. Revision Changes Path 1.5 +0 -18 src/sys/sparc64/include/ofw_upa.h 1.11 +2 -2 src/sys/sparc64/isa/ofw_isa.c 1.10 +24 -6 src/sys/sparc64/pci/ofw_pci.h 1.58 +10 -10 src/sys/sparc64/pci/psycho.c