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/dev/mii | |
| parent | 1372543b736071c7eba05adcb1290c8f1d622a44 (diff) | |
Include <sys/device.h> for struct device.
Diffstat (limited to 'sys/dev/mii')
| -rw-r--r-- | sys/dev/mii/ciphy.c | 5 |
1 files changed, 3 insertions, 2 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> |
