Linux Kernel
3.7.1
|
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include "tulip.h"
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/etherdevice.h>
#include <linux/delay.h>
#include <linux/mii.h>
#include <linux/crc32.h>
#include <asm/unaligned.h>
#include <asm/uaccess.h>
Go to the source code of this file.
Macros | |
#define | pr_fmt(fmt) "tulip: " fmt |
#define | DRV_NAME "tulip" |
#define | DRV_VERSION "1.1.15" |
#define | DRV_RELDATE "Feb 27, 2007" |
#define | MAX_UNITS 8 |
#define | TX_TIMEOUT (4*HZ) |
Functions | |
MODULE_AUTHOR ("The Linux Kernel Team") | |
MODULE_DESCRIPTION ("Digital 21*4* Tulip ethernet driver") | |
MODULE_LICENSE ("GPL") | |
MODULE_VERSION (DRV_VERSION) | |
module_param (tulip_debug, int, 0) | |
module_param (max_interrupt_work, int, 0) | |
module_param (rx_copybreak, int, 0) | |
module_param (csr0, int, 0) | |
module_param_array (options, int, NULL, 0) | |
module_param_array (full_duplex, int, NULL, 0) | |
MODULE_DEVICE_TABLE (pci, tulip_pci_tbl) | |
DEFINE_PCI_DEVICE_TABLE (early_486_chipsets) | |
module_init (tulip_init) | |
module_exit (tulip_cleanup) | |
Variables | |
const char *const | medianame [32] |
int | tulip_debug = TULIP_DEBUG |
struct tulip_chip_table | tulip_tbl [] |
const char | tulip_media_cap [32] |
#define DRV_NAME "tulip" |
Definition at line 14 of file tulip_core.c.
#define DRV_RELDATE "Feb 27, 2007" |
Definition at line 20 of file tulip_core.c.
#define DRV_VERSION "1.1.15" |
Definition at line 18 of file tulip_core.c.
#define MAX_UNITS 8 |
Definition at line 48 of file tulip_core.c.
#define pr_fmt | ( | fmt | ) | "tulip: " fmt |
Definition at line 12 of file tulip_core.c.
#define TX_TIMEOUT (4*HZ) |
Definition at line 107 of file tulip_core.c.
DEFINE_PCI_DEVICE_TABLE | ( | early_486_chipsets | ) |
MODULE_AUTHOR | ( | "The Linux Kernel Team" | ) |
MODULE_DEVICE_TABLE | ( | pci | , |
tulip_pci_tbl | |||
) |
module_exit | ( | tulip_cleanup | ) |
module_init | ( | tulip_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | tulip_debug | , |
int | , | ||
0 | |||
) |
module_param | ( | max_interrupt_work | , |
int | , | ||
0 | |||
) |
module_param | ( | rx_copybreak | , |
int | , | ||
0 | |||
) |
module_param | ( | csr0 | , |
int | , | ||
0 | |||
) |
MODULE_VERSION | ( | DRV_VERSION | ) |
Definition at line 55 of file tulip_core.c.
int tulip_debug = TULIP_DEBUG |
Definition at line 122 of file tulip_core.c.
Definition at line 256 of file tulip_core.c.
struct tulip_chip_table tulip_tbl[] |
Definition at line 142 of file tulip_core.c.