From owner-svn-src-head@freebsd.org Fri Oct 20 03:13:32 2017 Return-Path: Delivered-To: svn-src-head@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 62EFAE4E315; Fri, 20 Oct 2017 03:13:32 +0000 (UTC) (envelope-from jhibbits@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 0E32D65313; Fri, 20 Oct 2017 03:13:31 +0000 (UTC) (envelope-from jhibbits@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9K3DVtj008114; Fri, 20 Oct 2017 03:13:31 GMT (envelope-from jhibbits@FreeBSD.org) Received: (from jhibbits@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9K3DVdC008113; Fri, 20 Oct 2017 03:13:31 GMT (envelope-from jhibbits@FreeBSD.org) Message-Id: <201710200313.v9K3DVdC008113@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhibbits set sender to jhibbits@FreeBSD.org using -f From: Justin Hibbits Date: Fri, 20 Oct 2017 03:13:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324784 - head/sys/powerpc/ofw X-SVN-Group: head X-SVN-Commit-Author: jhibbits X-SVN-Commit-Paths: head/sys/powerpc/ofw X-SVN-Commit-Revision: 324784 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Oct 2017 03:13:32 -0000 Author: jhibbits Date: Fri Oct 20 03:13:31 2017 New Revision: 324784 URL: https://svnweb.freebsd.org/changeset/base/324784 Log: No need to check for AIM here This block is already in a #ifdef AIM block. Modified: head/sys/powerpc/ofw/ofw_machdep.c Modified: head/sys/powerpc/ofw/ofw_machdep.c ============================================================================== --- head/sys/powerpc/ofw/ofw_machdep.c Fri Oct 20 03:03:04 2017 (r324783) +++ head/sys/powerpc/ofw/ofw_machdep.c Fri Oct 20 03:13:31 2017 (r324784) @@ -461,7 +461,7 @@ openfirmware_core(void *args) /* Restore initially saved trap vectors */ ofw_restore_trap_vec(save_trap_init); -#if defined(AIM) && !defined(__powerpc64__) +#ifndef __powerpc64__ /* * Clear battable[] translations */