diff options
-rw-r--r-- | sys/arch/mac68k/dev/if_sn_nubus.c | 7 | ||||
-rw-r--r-- | sys/arch/mac68k/dev/if_sn_obio.c | 6 |
2 files changed, 2 insertions, 11 deletions
diff --git a/sys/arch/mac68k/dev/if_sn_nubus.c b/sys/arch/mac68k/dev/if_sn_nubus.c index 832b16e8aaf..745309a3b25 100644 --- a/sys/arch/mac68k/dev/if_sn_nubus.c +++ b/sys/arch/mac68k/dev/if_sn_nubus.c @@ -1,5 +1,4 @@ -/* $NetBSD$ */ -/* $OpenBSD: if_sn_nubus.c,v 1.2 1997/03/14 14:11:35 briggs Exp $ */ +/* $OpenBSD: if_sn_nubus.c,v 1.3 1997/03/17 04:16:59 briggs Exp $ */ /* * Copyright (C) 1997 Allen Briggs @@ -41,10 +40,8 @@ #include <net/if.h> -#ifdef INET #include <netinet/in.h> #include <netinet/if_ether.h> -#endif #include <machine/bus.h> #include <machine/viareg.h> @@ -58,8 +55,6 @@ static int sn_nubus_match __P((struct device *, void *, void *)); static void sn_nubus_attach __P((struct device *, struct device *, void *)); static int sn_nb_card_vendor __P((struct nubus_attach_args *)); -void snsetup __P((struct sn_softc *)); - struct cfattach sn_nubus_ca = { sizeof(struct sn_softc), sn_nubus_match, sn_nubus_attach }; diff --git a/sys/arch/mac68k/dev/if_sn_obio.c b/sys/arch/mac68k/dev/if_sn_obio.c index 0b4d381c564..726c29c4966 100644 --- a/sys/arch/mac68k/dev/if_sn_obio.c +++ b/sys/arch/mac68k/dev/if_sn_obio.c @@ -1,5 +1,4 @@ -/* $NetBSD$ */ -/* $OpenBSD: if_sn_obio.c,v 1.2 1997/03/14 14:11:35 briggs Exp $ */ +/* $OpenBSD: if_sn_obio.c,v 1.3 1997/03/17 04:17:00 briggs Exp $ */ /* * Copyright (C) 1997 Allen Briggs @@ -41,10 +40,8 @@ #include <net/if.h> -#ifdef INET #include <netinet/in.h> #include <netinet/if_ether.h> -#endif #include <machine/bus.h> #include <machine/macinfo.h> @@ -60,7 +57,6 @@ static int sn_obio_match __P((struct device *, void *, void *)); static void sn_obio_attach __P((struct device *, struct device *, void *)); static void sn_obio_getaddr __P((struct sn_softc *)); -void snsetup __P((struct sn_softc *)); struct cfattach sn_obio_ca = { sizeof(struct sn_softc), sn_obio_match, sn_obio_attach |