From owner-svn-src-projects@FreeBSD.ORG Sat Jun 5 20:41:22 2010 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2AAA106566B; Sat, 5 Jun 2010 20:41:22 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A18208FC0C; Sat, 5 Jun 2010 20:41:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o55KfMo9032157; Sat, 5 Jun 2010 20:41:22 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o55KfMF6032155; Sat, 5 Jun 2010 20:41:22 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201006052041.o55KfMF6032155@svn.freebsd.org> From: Nathan Whitehorn Date: Sat, 5 Jun 2010 20:41:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208850 - projects/ppc64/sys/powerpc/include X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jun 2010 20:41:22 -0000 Author: nwhitehorn Date: Sat Jun 5 20:41:22 2010 New Revision: 208850 URL: http://svn.freebsd.org/changeset/base/208850 Log: BUS_SPACE_UNRESTRICTED is a flag, not an address, so it should be an int, not a long. Modified: projects/ppc64/sys/powerpc/include/bus.h Modified: projects/ppc64/sys/powerpc/include/bus.h ============================================================================== --- projects/ppc64/sys/powerpc/include/bus.h Sat Jun 5 20:37:40 2010 (r208849) +++ projects/ppc64/sys/powerpc/include/bus.h Sat Jun 5 20:41:22 2010 (r208850) @@ -94,7 +94,7 @@ #define BUS_SPACE_MAP_LINEAR 0x02 #define BUS_SPACE_MAP_PREFETCHABLE 0x04 -#define BUS_SPACE_UNRESTRICTED (~0UL) +#define BUS_SPACE_UNRESTRICTED (~0) #define BUS_SPACE_BARRIER_READ 0x01 #define BUS_SPACE_BARRIER_WRITE 0x02