diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2006-11-26 15:40:14 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2006-11-26 15:40:14 +0000 |
| commit | 2b15bbad225902ebce477ea2a952817abb9e67eb (patch) | |
| tree | 4efd64484f2020bb995d52901e2d4d0ca586b6a6 /sys | |
| parent | 1372543b736071c7eba05adcb1290c8f1d622a44 (diff) | |
Include <sys/device.h> for struct device.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/mii/ciphy.c | 5 | ||||
| -rw-r--r-- | sys/dev/pci/if_vge.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/mii/ciphy.c b/sys/dev/mii/ciphy.c index ba293aef3cf..b02c9c91e83 100644 --- a/sys/dev/mii/ciphy.c +++ b/sys/dev/mii/ciphy.c @@ -1,4 +1,4 @@ -/* $NetBSD: ciphy.c,v 1.10 2006/11/16 21:24:07 christos Exp $ */ +/* $NetBSD: ciphy.c,v 1.11 2006/11/26 15:40:14 tsutsui Exp $ */ /*- * Copyright (c) 2004 @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ciphy.c,v 1.10 2006/11/16 21:24:07 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ciphy.c,v 1.11 2006/11/26 15:40:14 tsutsui Exp $"); /* * Driver for the Cicada CS8201 10/100/1000 copper PHY. @@ -43,6 +43,7 @@ __KERNEL_RCSID(0, "$NetBSD: ciphy.c,v 1.10 2006/11/16 21:24:07 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> +#include <sys/device.h> #include <sys/kernel.h> #include <sys/socket.h> #include <machine/bus.h> diff --git a/sys/dev/pci/if_vge.c b/sys/dev/pci/if_vge.c index b5624f2a96a..3a9f955d0a9 100644 --- a/sys/dev/pci/if_vge.c +++ b/sys/dev/pci/if_vge.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_vge.c,v 1.29 2006/11/26 15:04:15 tsutsui Exp $ */ +/* $NetBSD: if_vge.c,v 1.30 2006/11/26 15:40:14 tsutsui Exp $ */ /*- * Copyright (c) 2004 @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_vge.c,v 1.29 2006/11/26 15:04:15 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_vge.c,v 1.30 2006/11/26 15:40:14 tsutsui Exp $"); /* * VIA Networking Technologies VT612x PCI gigabit ethernet NIC driver. @@ -89,6 +89,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_vge.c,v 1.29 2006/11/26 15:04:15 tsutsui Exp $"); #include <sys/param.h> #include <sys/endian.h> #include <sys/systm.h> +#include <sys/device.h> #include <sys/sockio.h> #include <sys/mbuf.h> #include <sys/malloc.h> |
