aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ar
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-11-18 08:32:02 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-11-18 08:32:02 +0000
commit609d21b734fc20495a481a199ae7cf5b15ac96cd (patch)
treeb4af4453e56ada5ac95a000a357ff668e54c6e8b /sys/dev/ar
parent45d3a132c4075e934fe5fa223093ce98af093b07 (diff)
Notes
Diffstat (limited to 'sys/dev/ar')
-rw-r--r--sys/dev/ar/if_ar.c4
-rw-r--r--sys/dev/ar/if_ar_isa.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ar/if_ar.c b/sys/dev/ar/if_ar.c
index f568bfed49080..4d27d728a70aa 100644
--- a/sys/dev/ar/if_ar.c
+++ b/sys/dev/ar/if_ar.c
@@ -428,9 +428,9 @@ arattach(struct ar_hardc *hc)
struct ar_softc *sc;
#ifndef NETGRAPH
struct ifnet *ifp;
+ char *iface;
#endif /* NETGRAPH */
int unit;
- char *iface;
printf("arc%d: %uK RAM, %u ports, rev %u.\n",
hc->cunit,
@@ -1129,7 +1129,7 @@ arc_init(struct ar_hardc *hc)
MALLOC(sc, struct ar_softc *,
hc->numports * sizeof(struct ar_softc), M_DEVBUF, M_WAITOK);
if (sc == NULL)
- return (ENOMEM);
+ return;
bzero(sc, hc->numports * sizeof(struct ar_softc));
hc->sc = sc;
diff --git a/sys/dev/ar/if_ar_isa.c b/sys/dev/ar/if_ar_isa.c
index f568bfed49080..4d27d728a70aa 100644
--- a/sys/dev/ar/if_ar_isa.c
+++ b/sys/dev/ar/if_ar_isa.c
@@ -428,9 +428,9 @@ arattach(struct ar_hardc *hc)
struct ar_softc *sc;
#ifndef NETGRAPH
struct ifnet *ifp;
+ char *iface;
#endif /* NETGRAPH */
int unit;
- char *iface;
printf("arc%d: %uK RAM, %u ports, rev %u.\n",
hc->cunit,
@@ -1129,7 +1129,7 @@ arc_init(struct ar_hardc *hc)
MALLOC(sc, struct ar_softc *,
hc->numports * sizeof(struct ar_softc), M_DEVBUF, M_WAITOK);
if (sc == NULL)
- return (ENOMEM);
+ return;
bzero(sc, hc->numports * sizeof(struct ar_softc));
hc->sc = sc;