diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-09-20 06:05:28 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-09-20 06:05:28 +0000 |
commit | 698c3f7e3cb689520a19c416bf17aacda9ccf1fc (patch) | |
tree | 5784cead17934e57f48508ee003589d274014318 /sys/dev/mii/exphy.c | |
parent | f62413d59d99a7dc0e3a2ca8ea791c4bb5eadd14 (diff) |
don't include sys/malloc.h, no memory management functions are used
by any of the MII drivers.
From NetBSD
Diffstat (limited to 'sys/dev/mii/exphy.c')
-rw-r--r-- | sys/dev/mii/exphy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c index 804c04fb990..82bd7235712 100644 --- a/sys/dev/mii/exphy.c +++ b/sys/dev/mii/exphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exphy.c,v 1.12 2003/02/13 06:02:09 fgsch Exp $ */ +/* $OpenBSD: exphy.c,v 1.13 2004/09/20 06:05:27 brad Exp $ */ /* $NetBSD: exphy.c,v 1.23 2000/02/02 23:34:56 thorpej Exp $ */ /*- @@ -75,7 +75,6 @@ #include <sys/systm.h> #include <sys/kernel.h> #include <sys/device.h> -#include <sys/malloc.h> #include <sys/socket.h> #include <net/if.h> |