summaryrefslogtreecommitdiff
path: root/sys/dev/sbus/qe.c
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-03-27 17:39:06 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-03-27 17:39:06 +0000
commit188d7867e9e1d389ac430d4df551ce6ed2837843 (patch)
tree84eebb74980b5d5a77b08cb1758c10e8afe7cc3e /sys/dev/sbus/qe.c
parent0bd2ed01f4bc73c36613982e6f96608a7b1bc329 (diff)
const and static cleaning
Diffstat (limited to 'sys/dev/sbus/qe.c')
-rw-r--r--sys/dev/sbus/qe.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/sbus/qe.c b/sys/dev/sbus/qe.c
index 3f8dae7a0cd..6981a468aa6 100644
--- a/sys/dev/sbus/qe.c
+++ b/sys/dev/sbus/qe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qe.c,v 1.10 2003/02/17 01:29:21 henric Exp $ */
+/* $OpenBSD: qe.c,v 1.11 2003/03/27 17:39:05 jason Exp $ */
/* $NetBSD: qe.c,v 1.16 2001/03/30 17:30:18 christos Exp $ */
/*-
@@ -164,9 +164,9 @@ int qe_rint(struct qe_softc *);
int qe_tint(struct qe_softc *);
void qe_mcreset(struct qe_softc *);
-static int qe_put(struct qe_softc *, int, struct mbuf *);
-static void qe_read(struct qe_softc *, int, int);
-static struct mbuf *qe_get(struct qe_softc *, int, int);
+int qe_put(struct qe_softc *, int, struct mbuf *);
+void qe_read(struct qe_softc *, int, int);
+struct mbuf *qe_get(struct qe_softc *, int, int);
/* ifmedia callbacks */
void qe_ifmedia_sts(struct ifnet *, struct ifmediareq *);
@@ -338,7 +338,7 @@ qeattach(parent, self, aux)
* We copy the data into mbufs. When full cluster sized units are present,
* we copy into clusters.
*/
-static __inline__ struct mbuf *
+struct mbuf *
qe_get(sc, idx, totlen)
struct qe_softc *sc;
int idx, totlen;