#include <linux/dma-mapping.h>
#include <linux/module.h>
#include <linux/uaccess.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/ethtool.h>
#include <linux/skbuff.h>
#include <linux/io.h>
#include <linux/crc32.h>
#include <linux/mii.h>
#include <linux/of_device.h>
#include <linux/of_platform.h>
#include <linux/slab.h>
#include <asm/cacheflush.h>
#include <asm/byteorder.h>
#include "greth.h"
Go to the source code of this file.
|
| module_param (greth_debug, int, 0) |
|
| MODULE_PARM_DESC (greth_debug,"GRETH bitmapped debugging message enable value") |
|
| module_param_array (macaddr, int, NULL, 0) |
|
| MODULE_PARM_DESC (macaddr,"GRETH Ethernet MAC address") |
|
| module_param (greth_edcl, int, 0) |
|
| MODULE_PARM_DESC (greth_edcl,"GRETH EDCL usage indicator. Set to 1 if EDCL is used.") |
|
| MODULE_DEVICE_TABLE (of, greth_of_match) |
|
| module_platform_driver (greth_of_driver) |
|
| MODULE_AUTHOR ("Aeroflex Gaisler AB.") |
|
| MODULE_DESCRIPTION ("Aeroflex Gaisler Ethernet MAC driver") |
|
| MODULE_LICENSE ("GPL") |
|
#define GRETH_DEF_MSG_ENABLE |
Value:
NETIF_MSG_PROBE | \
NETIF_MSG_LINK | \
NETIF_MSG_IFDOWN | \
NETIF_MSG_IFUP | \
NETIF_MSG_RX_ERR | \
NETIF_MSG_TX_ERR)
Definition at line 49 of file greth.c.
MODULE_AUTHOR |
( |
"Aeroflex Gaisler AB." |
| ) |
|
MODULE_DESCRIPTION |
( |
"Aeroflex Gaisler Ethernet MAC driver" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
of |
, |
|
|
greth_of_match |
|
|
) |
| |
module_param |
( |
greth_debug |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
greth_edcl |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
greth_edcl |
, |
|
|
"GRETH EDCL usage indicator. Set to 1 if EDCL is used." |
|
|
) |
| |
module_platform_driver |
( |
greth_of_driver |
| ) |
|