svn commit: r206837 - head/sys/mips/malta

Juli Mallett jmallett at FreeBSD.org
Mon Apr 19 09:03:34 UTC 2010


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];


More information about the svn-src-all mailing list