Module Name: src Committed By: maya Date: Tue Jul 19 13:48:52 UTC 2016
Modified Files: src/sys/arch/playstation2/dev: sbus.c spd.c src/sys/arch/playstation2/playstation2: mainbus.c Log Message: We need to include param.h before device.h, as it uses uint64_t To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/arch/playstation2/dev/sbus.c cvs rdiff -u -r1.11 -r1.12 src/sys/arch/playstation2/dev/spd.c cvs rdiff -u -r1.14 -r1.15 src/sys/arch/playstation2/playstation2/mainbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/playstation2/dev/sbus.c diff -u src/sys/arch/playstation2/dev/sbus.c:1.15 src/sys/arch/playstation2/dev/sbus.c:1.16 --- src/sys/arch/playstation2/dev/sbus.c:1.15 Mon Jul 18 22:07:38 2016 +++ src/sys/arch/playstation2/dev/sbus.c Tue Jul 19 13:48:51 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: sbus.c,v 1.15 2016/07/18 22:07:38 maya Exp $ */ +/* $NetBSD: sbus.c,v 1.16 2016/07/19 13:48:51 maya Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -34,10 +34,10 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sbus.c,v 1.15 2016/07/18 22:07:38 maya Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sbus.c,v 1.16 2016/07/19 13:48:51 maya Exp $"); -#include <sys/device.h> #include <sys/param.h> +#include <sys/device.h> #include <sys/systm.h> #include <machine/bootinfo.h> Index: src/sys/arch/playstation2/dev/spd.c diff -u src/sys/arch/playstation2/dev/spd.c:1.11 src/sys/arch/playstation2/dev/spd.c:1.12 --- src/sys/arch/playstation2/dev/spd.c:1.11 Mon Jul 18 22:05:53 2016 +++ src/sys/arch/playstation2/dev/spd.c Tue Jul 19 13:48:51 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: spd.c,v 1.11 2016/07/18 22:05:53 maya Exp $ */ +/* $NetBSD: spd.c,v 1.12 2016/07/19 13:48:51 maya Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -30,10 +30,10 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: spd.c,v 1.11 2016/07/18 22:05:53 maya Exp $"); +__KERNEL_RCSID(0, "$NetBSD: spd.c,v 1.12 2016/07/19 13:48:51 maya Exp $"); -#include <sys/device.h> #include <sys/param.h> +#include <sys/device.h> #include <sys/systm.h> #include <machine/bootinfo.h> Index: src/sys/arch/playstation2/playstation2/mainbus.c diff -u src/sys/arch/playstation2/playstation2/mainbus.c:1.14 src/sys/arch/playstation2/playstation2/mainbus.c:1.15 --- src/sys/arch/playstation2/playstation2/mainbus.c:1.14 Mon Jul 18 22:05:53 2016 +++ src/sys/arch/playstation2/playstation2/mainbus.c Tue Jul 19 13:48:52 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: mainbus.c,v 1.14 2016/07/18 22:05:53 maya Exp $ */ +/* $NetBSD: mainbus.c,v 1.15 2016/07/19 13:48:52 maya Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -27,10 +27,10 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.14 2016/07/18 22:05:53 maya Exp $"); +__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.15 2016/07/19 13:48:52 maya Exp $"); -#include <sys/device.h> #include <sys/param.h> +#include <sys/device.h> #include <sys/systm.h> #include <machine/autoconf.h>