From owner-svn-src-head@FreeBSD.ORG Sun Feb 2 16:42:27 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 054EC2C2; Sun, 2 Feb 2014 16:42:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E54781A17; Sun, 2 Feb 2014 16:42:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s12GgQhA032924; Sun, 2 Feb 2014 16:42:26 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s12GgQHr032923; Sun, 2 Feb 2014 16:42:26 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201402021642.s12GgQHr032923@svn.freebsd.org> From: Nathan Whitehorn Date: Sun, 2 Feb 2014 16:42:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261404 - head/sys/arm/arm X-SVN-Group: head 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.17 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: Sun, 02 Feb 2014 16:42:27 -0000 Author: nwhitehorn Date: Sun Feb 2 16:42:26 2014 New Revision: 261404 URL: http://svnweb.freebsd.org/changeset/base/261404 Log: Fix one remnant endian flaw here. The back-and-forth endian conversions are confusing. Modified: head/sys/arm/arm/nexus.c Modified: head/sys/arm/arm/nexus.c ============================================================================== --- head/sys/arm/arm/nexus.c Sun Feb 2 16:41:54 2014 (r261403) +++ head/sys/arm/arm/nexus.c Sun Feb 2 16:42:26 2014 (r261404) @@ -362,7 +362,7 @@ nexus_ofw_map_intr(device_t dev, device_ } /* Not in table, so guess */ - interrupt = FDT_MAP_IRQ(intr_parent, intr[0]); + interrupt = FDT_MAP_IRQ(intr_parent, fdt32_to_cpu(intr[0])); return (interrupt); }