From owner-svn-src-all@freebsd.org Thu Oct 19 20:52:18 2017 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 7A25AE474D4; Thu, 19 Oct 2017 20:52:18 +0000 (UTC) (envelope-from manu@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 497AA80549; Thu, 19 Oct 2017 20:52:18 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9JKqHJq050510; Thu, 19 Oct 2017 20:52:17 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9JKqHOV050509; Thu, 19 Oct 2017 20:52:17 GMT (envelope-from manu@FreeBSD.org) Message-Id: <201710192052.v9JKqHOV050509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Thu, 19 Oct 2017 20:52:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324771 - head/sys/arm/nvidia/tegra124 X-SVN-Group: head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/sys/arm/nvidia/tegra124 X-SVN-Commit-Revision: 324771 X-SVN-Commit-Repository: base 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.23 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, 19 Oct 2017 20:52:18 -0000 Author: manu Date: Thu Oct 19 20:52:17 2017 New Revision: 324771 URL: https://svnweb.freebsd.org/changeset/base/324771 Log: tegra: Do not define early printf function Since tegra is now in GENERIC, do not enable the early printf function as it can conflict with others. Modified: head/sys/arm/nvidia/tegra124/tegra124_machdep.c Modified: head/sys/arm/nvidia/tegra124/tegra124_machdep.c ============================================================================== --- head/sys/arm/nvidia/tegra124/tegra124_machdep.c Thu Oct 19 20:42:46 2017 (r324770) +++ head/sys/arm/nvidia/tegra124/tegra124_machdep.c Thu Oct 19 20:52:17 2017 (r324771) @@ -122,6 +122,7 @@ tegra124_cpu_reset(platform_t plat) * option SOCDEV_VA=0x70000000 * option EARLY_PRINTF */ +#if 0 #ifdef EARLY_PRINTF static void tegra124_early_putc(int c) @@ -135,6 +136,7 @@ tegra124_early_putc(int c) *UART_TX_REG = c; } early_putc_t *early_putc = tegra124_early_putc; +#endif #endif static platform_method_t tegra124_methods[] = {