summaryrefslogtreecommitdiff
path: root/sys/dev/pcmcia/if_malo.c
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2007-08-05 14:53:03 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2007-08-05 14:53:03 +0000
commit65f4615dc434a901ecaa6891531d4c5a3bb7cc97 (patch)
treedc12949e5b906716fc2ef0e323219fe5133b9f7f /sys/dev/pcmcia/if_malo.c
parent8490f3d0d6e86a12fce3acee3cf0ea1c55222e9b (diff)
Parse association command response to check if an association was
successfull or not.
Diffstat (limited to 'sys/dev/pcmcia/if_malo.c')
-rw-r--r--sys/dev/pcmcia/if_malo.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/sys/dev/pcmcia/if_malo.c b/sys/dev/pcmcia/if_malo.c
index ae32c6f6c23..94d89c589e6 100644
--- a/sys/dev/pcmcia/if_malo.c
+++ b/sys/dev/pcmcia/if_malo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_malo.c,v 1.37 2007/08/05 14:00:37 mglocker Exp $ */
+/* $OpenBSD: if_malo.c,v 1.38 2007/08/05 14:53:02 mglocker Exp $ */
/*
* Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
@@ -108,6 +108,7 @@ int cmalo_cmd_set_txpower(struct malo_softc *, int16_t);
int cmalo_cmd_set_antenna(struct malo_softc *, uint16_t);
int cmalo_cmd_set_macctrl(struct malo_softc *);
int cmalo_cmd_set_assoc(struct malo_softc *);
+int cmalo_cmd_rsp_assoc(struct malo_softc *);
int cmalo_cmd_set_80211d(struct malo_softc *);
int cmalo_cmd_set_bgscan_config(struct malo_softc *);
int cmalo_cmd_set_bgscan_query(struct malo_softc *);
@@ -1657,6 +1658,22 @@ cmalo_cmd_set_assoc(struct malo_softc *sc)
}
int
+cmalo_cmd_rsp_assoc(struct malo_softc *sc)
+{
+ struct malo_cmd_header *hdr = sc->sc_cmd;
+ struct malo_cmd_body_rsp_assoc *body;
+
+ body = (struct malo_cmd_body_rsp_assoc *)(hdr + 1);
+
+ if (body->status) {
+ DPRINTF(1, "%s: association failed (status %d)!\n",
+ sc->sc_dev.dv_xname, body->status);
+ }
+
+ return (0);
+}
+
+int
cmalo_cmd_set_80211d(struct malo_softc *sc)
{
struct malo_cmd_header *hdr = sc->sc_cmd;
@@ -1931,6 +1948,7 @@ cmalo_cmd_response(struct malo_softc *sc)
/* do nothing */
DPRINTF(1, "%s: got assoc cmd response\n",
sc->sc_dev.dv_xname);
+ cmalo_cmd_rsp_assoc(sc);
break;
case MALO_CMD_80211D:
/* do nothing */