From owner-svn-src-all@freebsd.org Thu Feb 11 06:19:33 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA2C9AA4AC4; Thu, 11 Feb 2016 06:19:33 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 769D5DB1; Thu, 11 Feb 2016 06:19:33 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1B6JWJ1051681; Thu, 11 Feb 2016 06:19:32 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1B6JWlv051678; Thu, 11 Feb 2016 06:19:32 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201602110619.u1B6JWlv051678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Thu, 11 Feb 2016 06:19:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r295501 - in head/sys: conf mips/include mips/mips X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Feb 2016 06:19:33 -0000 Author: adrian Date: Thu Feb 11 06:19:32 2016 New Revision: 295501 URL: https://svnweb.freebsd.org/changeset/base/295501 Log: Remove bus space fdt for MIPS. This was originall done by kan@. Submitted by: Stanislav Galabov Reviewed by: kan Differential Revision: https://reviews.freebsd.org/D5184 Deleted: head/sys/mips/mips/bus_space_fdt.c Modified: head/sys/conf/files.mips head/sys/mips/include/fdt.h Modified: head/sys/conf/files.mips ============================================================================== --- head/sys/conf/files.mips Thu Feb 11 06:15:43 2016 (r295500) +++ head/sys/conf/files.mips Thu Feb 11 06:19:32 2016 (r295501) @@ -7,7 +7,6 @@ # Arch dependent files mips/mips/autoconf.c standard mips/mips/bus_space_generic.c standard -mips/mips/bus_space_fdt.c optional fdt mips/mips/busdma_machdep.c standard mips/mips/cache.c standard mips/mips/cache_mipsNN.c standard Modified: head/sys/mips/include/fdt.h ============================================================================== --- head/sys/mips/include/fdt.h Thu Feb 11 06:15:43 2016 (r295500) +++ head/sys/mips/include/fdt.h Thu Feb 11 06:19:32 2016 (r295501) @@ -40,7 +40,7 @@ #if defined(CPU_RMI) || defined(CPU_NLM) #define fdtbus_bs_tag rmi_uart_bus_space #else -#define fdtbus_bs_tag mips_bus_space_fdt +#define fdtbus_bs_tag mips_bus_space_generic #endif #endif /* _MACHINE_FDT_H_ */