Skip to content

Commit

Permalink
[PATCH] hostap update
Browse files Browse the repository at this point in the history
Update hostap_cs to use new PCMCIA event callback registration.

Signed-off-by: Jouni Malinen <jkmaline@cc.hut.fi>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Jouni Malinen authored and Jeff Garzik committed Jul 30, 2005
1 parent de745fb commit 47e362c
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions drivers/net/wireless/hostap/hostap_cs.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#define PRISM2_PCCARD

#include <linux/config.h>
#include <linux/version.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/if.h>
Expand All @@ -13,7 +12,6 @@
#include <linux/wireless.h>
#include <net/iw_handler.h>

#include <pcmcia/version.h>
#include <pcmcia/cs_types.h>
#include <pcmcia/cs.h>
#include <pcmcia/cistpl.h>
Expand Down Expand Up @@ -532,12 +530,6 @@ static dev_link_t *prism2_attach(void)
link->next = dev_list;
dev_list = link;
client_reg.dev_info = &dev_info;
client_reg.Attributes = INFO_IO_CLIENT;
client_reg.EventMask = CS_EVENT_CARD_INSERTION |
CS_EVENT_CARD_REMOVAL |
CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
client_reg.event_handler = &prism2_event;
client_reg.Version = 0x0210;
client_reg.event_callback_args.client_data = link;
ret = pcmcia_register_client(&link->handle, &client_reg);
Expand Down Expand Up @@ -931,6 +923,7 @@ static struct pcmcia_driver hostap_driver = {
.attach = prism2_attach,
.detach = prism2_detach,
.owner = THIS_MODULE,
.event = prism2_event,
};

static int __init init_prism2_pccard(void)
Expand Down

0 comments on commit 47e362c

Please sign in to comment.