#include <linux/hardirq.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/eisa.h>
#include <linux/pci.h>
#include <linux/dma-mapping.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/delay.h>
#include <linux/spinlock.h>
#include <linux/workqueue.h>
#include <linux/mii.h>
#include "tlan.h"
Go to the source code of this file.
|
| module_param_array (aui, int, NULL, 0) |
|
| module_param_array (duplex, int, NULL, 0) |
|
| module_param_array (speed, int, NULL, 0) |
|
| MODULE_PARM_DESC (aui,"ThunderLAN use AUI port(s) (0-1)") |
|
| MODULE_PARM_DESC (duplex,"ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)") |
|
| MODULE_PARM_DESC (speed,"ThunderLAN port speed setting(s) (0,10,100)") |
|
| MODULE_AUTHOR ("Maintainer: Samuel Chessman <[email protected]>") |
|
| MODULE_DESCRIPTION ("Driver for TI ThunderLAN based ethernet PCI adapters") |
|
| MODULE_LICENSE ("GPL") |
|
| module_param (debug, int, 0) |
|
| MODULE_PARM_DESC (debug,"ThunderLAN debug mask") |
|
| MODULE_DEVICE_TABLE (pci, tlan_pci_tbl) |
|
| module_init (tlan_probe) |
|
| module_exit (tlan_exit) |
|
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
#define tlan_suspend NULL |
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
tlan_pci_tbl |
|
|
) |
| |
module_exit |
( |
tlan_exit |
| ) |
|
module_init |
( |
tlan_probe |
| ) |
|
module_param_array |
( |
aui |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
aui |
, |
|
|
"ThunderLAN use AUI port(s) (0-1)" |
|
|
) |
| |