#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <linux/ptrace.h>
#include <linux/seq_file.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/if_arp.h>
#include <linux/ioport.h>
#include <linux/skbuff.h>
#include <linux/ieee80211.h>
#include <pcmcia/cistpl.h>
#include <pcmcia/cisreg.h>
#include <pcmcia/ds.h>
#include <linux/wireless.h>
#include <net/iw_handler.h>
#include <asm/io.h>
#include <asm/byteorder.h>
#include <asm/uaccess.h>
#include "rayctl.h"
#include "ray_cs.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Corey Thomas <[email protected]>") |
|
| MODULE_DESCRIPTION ("Raylink/WebGear wireless LAN driver") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (net_type, int, 0) |
|
| module_param (hop_dwell, int, 0) |
|
| module_param (beacon_period, int, 0) |
|
| module_param (psm, int, 0) |
|
| module_param (essid, charp, 0) |
|
| module_param (translate, int, 0) |
|
| module_param (country, int, 0) |
|
| module_param (sniffer, int, 0) |
|
| module_param (bc, int, 0) |
|
| module_param (phy_addr, charp, 0) |
|
| module_param (ray_mem_speed, int, 0) |
|
| MODULE_DEVICE_TABLE (pcmcia, ray_ids) |
|
| module_init (init_ray_cs) |
|
| module_exit (exit_ray_cs) |
|
#define MAX_TUPLE_SIZE 128 |
#define WIRELESS_SPY /* Enable spying addresses */ |
MODULE_DESCRIPTION |
( |
"Raylink/WebGear wireless LAN driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pcmcia |
, |
|
|
ray_ids |
|
|
) |
| |
module_exit |
( |
exit_ray_cs |
| ) |
|
module_init |
( |
init_ray_cs |
| ) |
|
module_param |
( |
net_type |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
hop_dwell |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
beacon_period |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
psm |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
essid |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
translate |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
sniffer |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
bc |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
phy_addr |
, |
|
|
charp |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
ray_mem_speed |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |