summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2006-08-31 20:47:41 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2006-08-31 20:47:41 +0000
commitc9caf22a5b753a554d8369d5bad5b05d872511ed (patch)
treeb3f39c248734713d1f91ad11cfe957790018304c /sys/dev/ic
parent62091f4d5dcb433b0163476310e7cc209973ab71 (diff)
Bring chip into initialized state.
ok deraadt@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/pgt.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/ic/pgt.c b/sys/dev/ic/pgt.c
index 369a40cda93..53ccf449d51 100644
--- a/sys/dev/ic/pgt.c
+++ b/sys/dev/ic/pgt.c
@@ -242,7 +242,7 @@ pgt_write_memory_barrier(struct pgt_softc *sc)
BUS_SPACE_BARRIER_WRITE);
}
-uint32_t
+u_int32_t
pgt_read_4(struct pgt_softc *sc, uint16_t offset)
{
return (bus_space_read_4(sc->sc_iotag, sc->sc_iohandle, offset));
@@ -826,7 +826,7 @@ pgt_attach(struct pgt_softc *sc)
goto failed;
sc->sc_refcnt++;
- //(void)msleep(&sc->sc_flags, &sc->sc_lock, PZERO, "pffres", hz);
+ tsleep(&sc->sc_flags, 0, "pftres", hz);
sc->sc_refcnt--;
if (sc->sc_flags & SC_UNINITIALIZED) {
printf("%s: not responding\n", sc->sc_dev.dv_xname);
@@ -837,11 +837,12 @@ pgt_attach(struct pgt_softc *sc)
DELAY(PFF_WRITEIO_DELAY);
}
- return (0);
-
//mtx_unlock(&sc->sc_lock);
if (error != 0)
goto failed;
+
+ return (0);
+
error = pgt_net_attach(sc);
if (error == 0) {
ieee80211_new_state(&sc->sc_ic, IEEE80211_S_INIT, -1);
@@ -1536,16 +1537,15 @@ pgt_poll(struct ifnet *ifp, enum poll_cmd cmd, int count)
#endif
int
-pgt_intr(void *argp)
+pgt_intr(void *arg)
{
- struct ifnet *ifp;
struct pgt_softc *sc;
+ struct ifnet *ifp;
struct mbuf *datarx = NULL;
- return (0);
+ sc = arg;
+ ifp = &sc->sc_ic.ic_if;
- ifp = argp;
- sc = ifp->if_softc;
//mtx_lock(&sc->sc_lock);
#ifdef DEVICE_POLLING
if (ifp->if_flags & IFF_POLLING) {
@@ -1582,7 +1582,7 @@ void
pgt_intr_body(struct pgt_softc *sc, struct mbuf **datarx,
int max_datarx_count)
{
- uint32_t reg;
+ u_int32_t reg;
/*
* Here the Linux driver ands in the value of the INT_EN register,