Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Apr 2010 09:03:34 +0000 (UTC)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r206837 - head/sys/mips/malta
Message-ID:  <201004190903.o3J93YTR053270@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jmallett
Date: Mon Apr 19 09:03:34 2010
New Revision: 206837
URL: http://svn.freebsd.org/changeset/base/206837

Log:
  Fix MALTA64 build.

Modified:
  head/sys/mips/malta/gt_pci.c

Modified: head/sys/mips/malta/gt_pci.c
==============================================================================
--- head/sys/mips/malta/gt_pci.c	Mon Apr 19 07:51:57 2010	(r206836)
+++ head/sys/mips/malta/gt_pci.c	Mon Apr 19 09:03:34 2010	(r206837)
@@ -109,8 +109,8 @@ struct gt_pci_softc {
 	struct rman		sc_mem_rman;
 	struct rman		sc_io_rman;
 	struct rman		sc_irq_rman;
-	uint32_t		sc_mem;
-	uint32_t		sc_io;
+	unsigned long		sc_mem;
+	bus_space_handle_t	sc_io;
 
 	struct resource		*sc_irq;
 	struct intr_event	*sc_eventstab[ICU_LEN];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004190903.o3J93YTR053270>