[PATCH] hostap update
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>
This commit is contained in:
Родитель
de745fb279
Коммит
47e362cf69
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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);
|
||||
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче