summaryrefslogtreecommitdiff
path: root/sys/dev/isa/if_ec.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-10-20 16:54:02 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-10-20 16:54:02 +0000
commitbc84703e9f93bdc102d3416a6939ea7e4a505b0e (patch)
tree8f7cd9e47abc6104ca11ffb76c9e7958311c1726 /sys/dev/isa/if_ec.c
parent33aae4888cee1d2168ee259a78d8df9d31b497e2 (diff)
ansi
Diffstat (limited to 'sys/dev/isa/if_ec.c')
-rw-r--r--sys/dev/isa/if_ec.c55
1 files changed, 15 insertions, 40 deletions
diff --git a/sys/dev/isa/if_ec.c b/sys/dev/isa/if_ec.c
index 9ce72a8722a..4ff37cf6260 100644
--- a/sys/dev/isa/if_ec.c
+++ b/sys/dev/isa/if_ec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ec.c,v 1.8 2006/10/01 20:51:36 brad Exp $ */
+/* $OpenBSD: if_ec.c,v 1.9 2006/10/20 16:54:01 brad Exp $ */
/* $NetBSD: if_ec.c,v 1.9 1998/07/05 06:49:12 jonathan Exp $ */
/*-
@@ -150,9 +150,7 @@ struct cfdriver ec_cd = {
};
int
-ec_probe(parent, match, aux)
- struct device *parent;
- void *match, *aux;
+ec_probe(struct device *parent, void *match, void *aux)
{
struct isa_attach_args *ia = aux;
bus_space_tag_t nict, asict, memt;
@@ -257,9 +255,7 @@ ec_probe(parent, match, aux)
}
void
-ec_attach(parent, self, aux)
- struct device *parent, *self;
- void *aux;
+ec_attach(struct device *parent, struct device *self, void *aux)
{
struct ec_softc *esc = (struct ec_softc *)self;
struct dp8390_softc *sc = &esc->sc_dp8390;
@@ -519,10 +515,8 @@ ec_attach(parent, self, aux)
}
int
-ec_fake_test_mem(sc)
- struct dp8390_softc *sc;
+ec_fake_test_mem(struct dp8390_softc *sc)
{
-
/*
* We have to do this after we initialize the GA, but we
* have to do that after calling dp8390_config(), which
@@ -533,8 +527,7 @@ ec_fake_test_mem(sc)
}
int
-ec_test_mem(sc)
- struct dp8390_softc *sc;
+ec_test_mem(struct dp8390_softc *sc)
{
struct ec_softc *esc = (struct ec_softc *)sc;
bus_space_tag_t memt = sc->sc_buft;
@@ -573,11 +566,7 @@ ec_test_mem(sc)
* up to a word - ok as long as mbufs are word-sized.
*/
__inline void
-ec_readmem(esc, from, to, len)
- struct ec_softc *esc;
- int from;
- u_int8_t *to;
- int len;
+ec_readmem(struct ec_softc *esc, int from, u_int8_t *to, int len)
{
bus_space_tag_t memt = esc->sc_dp8390.sc_buft;
bus_space_handle_t memh = esc->sc_dp8390.sc_bufh;
@@ -593,10 +582,7 @@ ec_readmem(esc, from, to, len)
}
int
-ec_write_mbuf(sc, m, buf)
- struct dp8390_softc *sc;
- struct mbuf *m;
- int buf;
+ec_write_mbuf(struct dp8390_softc *sc, struct mbuf *m, int buf)
{
struct ec_softc *esc = (struct ec_softc *)sc;
bus_space_tag_t asict = esc->sc_asict;
@@ -702,11 +688,8 @@ ec_write_mbuf(sc, m, buf)
}
int
-ec_ring_copy(sc, src, dst, amount)
- struct dp8390_softc *sc;
- int src;
- caddr_t dst;
- u_short amount;
+ec_ring_copy(struct dp8390_softc *sc, int src, caddr_t dst,
+ u_short amount)
{
struct ec_softc *esc = (struct ec_softc *)sc;
u_short tmp_amount;
@@ -729,10 +712,8 @@ ec_ring_copy(sc, src, dst, amount)
}
void
-ec_read_hdr(sc, packet_ptr, packet_hdrp)
- struct dp8390_softc *sc;
- int packet_ptr;
- struct dp8390_ring *packet_hdrp;
+ec_read_hdr(struct dp8390_softc *sc, int packet_ptr,
+ struct dp8390_ring *packet_hdrp)
{
struct ec_softc *esc = (struct ec_softc *)sc;
@@ -753,8 +734,7 @@ ec_media_init(struct dp8390_softc *sc)
}
int
-ec_mediachange(sc)
- struct dp8390_softc *sc;
+ec_mediachange(struct dp8390_softc *sc)
{
struct ec_softc *esc = (struct ec_softc *)sc;
struct ifmedia *ifm = &sc->sc_media;
@@ -763,9 +743,7 @@ ec_mediachange(sc)
}
void
-ec_mediastatus(sc, ifmr)
- struct dp8390_softc *sc;
- struct ifmediareq *ifmr;
+ec_mediastatus(struct dp8390_softc *sc, struct ifmediareq *ifmr)
{
struct ifmedia *ifm = &sc->sc_media;
@@ -776,8 +754,7 @@ ec_mediastatus(sc, ifmr)
}
void
-ec_init_card(sc)
- struct dp8390_softc *sc;
+ec_init_card(struct dp8390_softc *sc)
{
struct ec_softc *esc = (struct ec_softc *)sc;
struct ifmedia *ifm = &sc->sc_media;
@@ -786,9 +763,7 @@ ec_init_card(sc)
}
int
-ec_set_media(esc, media)
- struct ec_softc *esc;
- int media;
+ec_set_media(struct ec_softc *esc, int media)
{
u_int8_t new;