#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/mii.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/ethtool.h>
#include <linux/crc32.h>
#include <linux/bitops.h>
#include <linux/dma-mapping.h>
#include <asm/processor.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/uaccess.h>
#include "sis900.h"
Go to the source code of this file.
|
| MODULE_DEVICE_TABLE (pci, sis900_pci_tbl) |
|
| MODULE_AUTHOR ("Jim Huang <[email protected]>, Ollie Lho <[email protected]>") |
|
| MODULE_DESCRIPTION ("SiS 900 PCI Fast Ethernet driver") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (multicast_filter_limit, int, 0444) |
|
| module_param (max_interrupt_work, int, 0444) |
|
| module_param (sis900_debug, int, 0444) |
|
| MODULE_PARM_DESC (multicast_filter_limit,"SiS 900/7016 maximum number of filtered multicast addresses") |
|
| MODULE_PARM_DESC (max_interrupt_work,"SiS 900/7016 maximum events handled per interrupt") |
|
| MODULE_PARM_DESC (sis900_debug,"SiS 900/7016 bitmapped debugging message level") |
|
| module_init (sis900_init_module) |
|
| module_exit (sis900_cleanup_module) |
|
Value:
NETIF_MSG_LINK | \
NETIF_MSG_RX_ERR | \
NETIF_MSG_TX_ERR)
Definition at line 92 of file sis900.c.
#define SIS900_DRV_VERSION "v1.08.10 Apr. 2 2006" |
#define SIS900_MODULE_NAME "sis900" |
#define TX_TIMEOUT (4*HZ) |
MODULE_DESCRIPTION |
( |
"SiS 900 PCI Fast Ethernet driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
sis900_pci_tbl |
|
|
) |
| |
module_exit |
( |
sis900_cleanup_module |
| ) |
|
module_init |
( |
sis900_init_module |
| ) |
|
module_param |
( |
multicast_filter_limit |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
max_interrupt_work |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
module_param |
( |
sis900_debug |
, |
|
|
int |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
multicast_filter_limit |
, |
|
|
"SiS 900/7016 maximum number of filtered multicast addresses" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
sis900_debug |
, |
|
|
"SiS 900/7016 bitmapped debugging message level" |
|
|
) |
| |