diff options
| author | drochner <drochner@NetBSD.org> | 1997-07-22 17:41:01 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 1997-07-22 17:41:01 +0000 |
| commit | bdb232d2b6b120cdd4d806c867ac55fa02ad73c3 (patch) | |
| tree | a57df52e88fa498d4f133e30be7cf4c625c32626 | |
| parent | ac7da90b8308e5fd42a7498ff7f41c9568609927 (diff) | |
Don't use <lib/libsa/if_ether.h> anymore. This was a copy of the
old (before ARP changes) <netinet/if_ether.h>, intended for
temporary use.
| -rw-r--r-- | sys/arch/alpha/stand/netboot/dev_net.c | 3 | ||||
| -rw-r--r-- | sys/arch/hp300/stand/common/conf.c | 3 | ||||
| -rw-r--r-- | sys/arch/hp300/stand/common/netio.c | 3 | ||||
| -rw-r--r-- | sys/arch/i386/stand/lib/netif/netif_small.c | 4 | ||||
| -rw-r--r-- | sys/arch/i386/stand/netboot/dev_net.c | 3 | ||||
| -rw-r--r-- | sys/arch/mvme68k/stand/netboot/dev_net.c | 3 | ||||
| -rw-r--r-- | sys/arch/ofppc/stand/ofwboot/net.c | 3 | ||||
| -rw-r--r-- | sys/arch/ofppc/stand/ofwboot/netif_of.c | 4 | ||||
| -rw-r--r-- | sys/arch/powerpc/stand/ofwboot/net.c | 3 | ||||
| -rw-r--r-- | sys/arch/powerpc/stand/ofwboot/netif_of.c | 4 | ||||
| -rw-r--r-- | sys/arch/sparc/stand/common/net.c | 3 | ||||
| -rw-r--r-- | sys/arch/sparc/stand/common/netif_sun.c | 4 | ||||
| -rw-r--r-- | sys/arch/sun3/stand/libsa/netif_sun.c | 4 | ||||
| -rw-r--r-- | sys/arch/sun3x/stand/libsa/netif_sun.c | 4 |
14 files changed, 20 insertions, 28 deletions
diff --git a/sys/arch/alpha/stand/netboot/dev_net.c b/sys/arch/alpha/stand/netboot/dev_net.c index 2e97c8a3f0f..e805e0596ad 100644 --- a/sys/arch/alpha/stand/netboot/dev_net.c +++ b/sys/arch/alpha/stand/netboot/dev_net.c @@ -1,4 +1,4 @@ -/* $NetBSD: dev_net.c,v 1.4 1997/04/06 08:41:24 cgd Exp $ */ +/* $NetBSD: dev_net.c,v 1.5 1997/07/22 17:41:01 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -55,7 +55,6 @@ #include <netinet/in.h> #include <netinet/in_systm.h> -#include <lib/libsa/if_ether.h> #include <lib/libsa/stand.h> #include <lib/libsa/net.h> #include <lib/libsa/netif.h> diff --git a/sys/arch/hp300/stand/common/conf.c b/sys/arch/hp300/stand/common/conf.c index 967933fef43..ed86f49ffd3 100644 --- a/sys/arch/hp300/stand/common/conf.c +++ b/sys/arch/hp300/stand/common/conf.c @@ -1,4 +1,4 @@ -/* $NetBSD: conf.c,v 1.2 1997/03/15 18:09:49 is Exp $ */ +/* $NetBSD: conf.c,v 1.3 1997/07/22 17:41:02 drochner Exp $ */ /* * Copyright (c) 1982, 1986, 1990, 1993 @@ -40,7 +40,6 @@ #include <net/if.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/hp300/stand/common/netio.c b/sys/arch/hp300/stand/common/netio.c index a3c8cc09f2e..7aec2058eb7 100644 --- a/sys/arch/hp300/stand/common/netio.c +++ b/sys/arch/hp300/stand/common/netio.c @@ -1,4 +1,4 @@ -/* $NetBSD: netio.c,v 1.2 1997/03/15 18:09:50 is Exp $ */ +/* $NetBSD: netio.c,v 1.3 1997/07/22 17:41:03 drochner Exp $ */ /* * Copyright (c) 1995, 1996 Jason R. Thorpe @@ -54,7 +54,6 @@ #include <net/if.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/i386/stand/lib/netif/netif_small.c b/sys/arch/i386/stand/lib/netif/netif_small.c index 6d9a654b9fe..95a5d4a3217 100644 --- a/sys/arch/i386/stand/lib/netif/netif_small.c +++ b/sys/arch/i386/stand/lib/netif/netif_small.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_small.c,v 1.3 1997/07/15 12:45:25 drochner Exp $ */ +/* $NetBSD: netif_small.c,v 1.4 1997/07/22 17:44:31 drochner Exp $ */ /* minimal netif - for boot ROMs we don't have to select between several interfaces, and we have to save space @@ -45,9 +45,9 @@ #endif #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include <net/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/i386/stand/netboot/dev_net.c b/sys/arch/i386/stand/netboot/dev_net.c index a30813ab93f..a3e88f46bb5 100644 --- a/sys/arch/i386/stand/netboot/dev_net.c +++ b/sys/arch/i386/stand/netboot/dev_net.c @@ -1,4 +1,4 @@ -/* $NetBSD: dev_net.c,v 1.5 1997/07/15 12:45:23 drochner Exp $ */ +/* $NetBSD: dev_net.c,v 1.6 1997/07/22 17:44:32 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -41,7 +41,6 @@ #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> -#include <net/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/mvme68k/stand/netboot/dev_net.c b/sys/arch/mvme68k/stand/netboot/dev_net.c index 115a5250146..dad9337baa8 100644 --- a/sys/arch/mvme68k/stand/netboot/dev_net.c +++ b/sys/arch/mvme68k/stand/netboot/dev_net.c @@ -1,4 +1,4 @@ -/* $NetBSD: dev_net.c,v 1.5 1997/03/15 18:10:13 is Exp $ */ +/* $NetBSD: dev_net.c,v 1.6 1997/07/22 17:41:04 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -52,7 +52,6 @@ #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> -#include "if_ether.h" #include <netinet/in_systm.h> #include <machine/prom.h> diff --git a/sys/arch/ofppc/stand/ofwboot/net.c b/sys/arch/ofppc/stand/ofwboot/net.c index dc58a83f36a..12d718e9cb7 100644 --- a/sys/arch/ofppc/stand/ofwboot/net.c +++ b/sys/arch/ofppc/stand/ofwboot/net.c @@ -1,4 +1,4 @@ -/* $NetBSD: net.c,v 1.1 1997/04/16 20:29:18 thorpej Exp $ */ +/* $NetBSD: net.c,v 1.2 1997/07/22 17:41:05 drochner Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank. @@ -54,7 +54,6 @@ #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/ofppc/stand/ofwboot/netif_of.c b/sys/arch/ofppc/stand/ofwboot/netif_of.c index 47315ea9d52..a8334e79193 100644 --- a/sys/arch/ofppc/stand/ofwboot/netif_of.c +++ b/sys/arch/ofppc/stand/ofwboot/netif_of.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_of.c,v 1.2 1997/04/28 18:36:35 mycroft Exp $ */ +/* $NetBSD: netif_of.c,v 1.3 1997/07/22 17:41:06 drochner Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank. @@ -48,9 +48,9 @@ #endif #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/powerpc/stand/ofwboot/net.c b/sys/arch/powerpc/stand/ofwboot/net.c index dc58a83f36a..12d718e9cb7 100644 --- a/sys/arch/powerpc/stand/ofwboot/net.c +++ b/sys/arch/powerpc/stand/ofwboot/net.c @@ -1,4 +1,4 @@ -/* $NetBSD: net.c,v 1.1 1997/04/16 20:29:18 thorpej Exp $ */ +/* $NetBSD: net.c,v 1.2 1997/07/22 17:41:05 drochner Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank. @@ -54,7 +54,6 @@ #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/powerpc/stand/ofwboot/netif_of.c b/sys/arch/powerpc/stand/ofwboot/netif_of.c index 47315ea9d52..a8334e79193 100644 --- a/sys/arch/powerpc/stand/ofwboot/netif_of.c +++ b/sys/arch/powerpc/stand/ofwboot/netif_of.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_of.c,v 1.2 1997/04/28 18:36:35 mycroft Exp $ */ +/* $NetBSD: netif_of.c,v 1.3 1997/07/22 17:41:06 drochner Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank. @@ -48,9 +48,9 @@ #endif #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/sparc/stand/common/net.c b/sys/arch/sparc/stand/common/net.c index f2a42ac4de3..e42cc674e77 100644 --- a/sys/arch/sparc/stand/common/net.c +++ b/sys/arch/sparc/stand/common/net.c @@ -1,4 +1,4 @@ -/* $NetBSD: net.c,v 1.1 1997/06/01 03:39:34 mrg Exp $ */ +/* $NetBSD: net.c,v 1.2 1997/07/22 17:41:07 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -52,7 +52,6 @@ #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/sparc/stand/common/netif_sun.c b/sys/arch/sparc/stand/common/netif_sun.c index 877503096e2..6e76951a97f 100644 --- a/sys/arch/sparc/stand/common/netif_sun.c +++ b/sys/arch/sparc/stand/common/netif_sun.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_sun.c,v 1.1 1997/06/01 03:39:36 mrg Exp $ */ +/* $NetBSD: netif_sun.c,v 1.2 1997/07/22 17:41:08 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -42,9 +42,9 @@ #include <time.h> #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include <lib/libsa/if_ether.h> #include <netinet/in_systm.h> #include <lib/libsa/stand.h> diff --git a/sys/arch/sun3/stand/libsa/netif_sun.c b/sys/arch/sun3/stand/libsa/netif_sun.c index 8736723f789..04a3dc982cf 100644 --- a/sys/arch/sun3/stand/libsa/netif_sun.c +++ b/sys/arch/sun3/stand/libsa/netif_sun.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_sun.c,v 1.6 1997/03/15 18:10:56 is Exp $ */ +/* $NetBSD: netif_sun.c,v 1.7 1997/07/22 17:41:09 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -42,9 +42,9 @@ #include <time.h> #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include "if_ether.h" #include <netinet/in_systm.h> #include <machine/control.h> diff --git a/sys/arch/sun3x/stand/libsa/netif_sun.c b/sys/arch/sun3x/stand/libsa/netif_sun.c index 505f39da659..175c7c1550c 100644 --- a/sys/arch/sun3x/stand/libsa/netif_sun.c +++ b/sys/arch/sun3x/stand/libsa/netif_sun.c @@ -1,4 +1,4 @@ -/* $NetBSD: netif_sun.c,v 1.4 1997/03/24 17:32:21 gwr Exp $ */ +/* $NetBSD: netif_sun.c,v 1.5 1997/07/22 17:41:10 drochner Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross @@ -42,9 +42,9 @@ #include <time.h> #include <net/if.h> +#include <net/if_ether.h> #include <netinet/in.h> -#include "if_ether.h" #include <netinet/in_systm.h> #include <machine/idprom.h> |
