svn commit: r239309 - head/sys/dev/fdt

Oleksandr Tymoshenko gonzo at FreeBSD.org
Wed Aug 15 18:37:02 UTC 2012


Author: gonzo
Date: Wed Aug 15 18:37:01 2012
New Revision: 239309
URL: http://svn.freebsd.org/changeset/base/239309

Log:
  Fix argument type for bus_space_map

Modified:
  head/sys/dev/fdt/fdt_common.c

Modified: head/sys/dev/fdt/fdt_common.c
==============================================================================
--- head/sys/dev/fdt/fdt_common.c	Wed Aug 15 18:33:58 2012	(r239308)
+++ head/sys/dev/fdt/fdt_common.c	Wed Aug 15 18:37:01 2012	(r239309)
@@ -426,7 +426,7 @@ fdt_reg_to_rl(phandle_t node, struct res
 	pcell_t addr_cells, size_cells;
 	int tuple_size, tuples;
 	int i, rv;
-	long vaddr;
+	bus_space_handle_t vaddr;
 	long busaddr, bussize;
 
 	if (fdt_addrsize_cells(OF_parent(node), &addr_cells, &size_cells) != 0)


More information about the svn-src-all mailing list