#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/ptrace.h>
#include <linux/slab.h>
#include <linux/string.h>
#include <linux/netdevice.h>
#include <linux/moduleparam.h>
#include <linux/device.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/cisreg.h>
#include <pcmcia/ds.h>
#include <pcmcia/ciscode.h>
#include <asm/io.h>
#include <linux/wireless.h>
#include "atmel.h"
Go to the source code of this file.
#define PCMCIA_DEVICE_MANF_CARD_INFO |
( |
|
manf, |
|
|
|
card, |
|
|
|
info |
|
) |
| |
Value:{ \
PCMCIA_DEV_ID_MATCH_CARD_ID, \
.manf_id = (manf), \
Definition at line 199 of file atmel_cs.c.
#define PCMCIA_DEVICE_PROD_ID12_INFO |
( |
|
v1, |
|
|
|
v2, |
|
|
|
vh1, |
|
|
|
vh2, |
|
|
|
info |
|
) |
| |
Value:{ \
PCMCIA_DEV_ID_MATCH_PROD_ID2, \
.prod_id_hash = { (vh1), (vh2), 0, 0 }, \
Definition at line 206 of file atmel_cs.c.
MODULE_AUTHOR |
( |
"Simon Kelley" |
| ) |
|
MODULE_DESCRIPTION |
( |
"Support for Atmel at76c50x 802.11 wireless ethernet cards." |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pcmcia |
, |
|
|
atmel_ids |
|
|
) |
| |
module_exit |
( |
atmel_cs_cleanup |
| ) |
|
module_init |
( |
atmel_cs_init |
| ) |
|
MODULE_SUPPORTED_DEVICE |
( |
"Atmel at76c50x PCMCIA cards" |
| ) |
|