Include sys/device.h. Fix build.

This commit is contained in:
uebayasi 2009-04-03 15:41:14 +00:00
parent 8e4e2fe06d
commit 58141c8949
2 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mcclock_mace.c,v 1.9 2009/03/18 10:22:35 cegger Exp $ */
/* $NetBSD: mcclock_mace.c,v 1.10 2009/04/03 15:41:14 uebayasi Exp $ */
/*
* Copyright (c) 2001 Antti Kantee. All Rights Reserved.
@ -65,10 +65,11 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mcclock_mace.c,v 1.9 2009/03/18 10:22:35 cegger Exp $");
__KERNEL_RCSID(0, "$NetBSD: mcclock_mace.c,v 1.10 2009/04/03 15:41:14 uebayasi Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <machine/cpu.h>
#include <machine/autoconf.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: console.c,v 1.39 2009/03/18 10:22:35 cegger Exp $ */
/* $NetBSD: console.c,v 1.40 2009/04/03 15:41:14 uebayasi Exp $ */
/*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@ -28,13 +28,14 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: console.c,v 1.39 2009/03/18 10:22:35 cegger Exp $");
__KERNEL_RCSID(0, "$NetBSD: console.c,v 1.40 2009/04/03 15:41:14 uebayasi Exp $");
#include "opt_kgdb.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/termios.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <machine/machtype.h>