Date: Fri, 12 Mar 2004 18:58:23 -0800 (PST) From: Juli Mallett <jmallett@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 48849 for review Message-ID: <200403130258.i2D2wNGN073015@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=48849 Change 48849 by jmallett@jmallett_oingo on 2004/03/12 18:57:48 Attach platform busses... Affected files ... .. //depot/projects/mips/sys/mips/include/hwfunc.h#3 edit .. //depot/projects/mips/sys/mips/mips/autoconf.c#2 edit Differences ... ==== //depot/projects/mips/sys/mips/include/hwfunc.h#3 (text+ko) ==== @@ -32,6 +32,7 @@ * Hooks downward into hardware functionality. */ +void platform_configure(void); void platform_halt(void); void platform_reset(void); void platform_start(int, char *[]); ==== //depot/projects/mips/sys/mips/mips/autoconf.c#2 (text+ko) ==== @@ -29,6 +29,7 @@ #include <sys/systm.h> #include <sys/bus.h> #include <sys/kernel.h> +#include <machine/hwfunc.h> static device_t nexusdev; @@ -40,5 +41,6 @@ configure(void *arg) { nexusdev = device_add_child(root_bus, "nexus", 0); + platform_configure(); root_bus_configure(); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403130258.i2D2wNGN073015>