#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/ioport.h>
#include <linux/errno.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/arcdevice.h>
#include <linux/com20020.h>
#include <asm/io.h>
Go to the source code of this file.
|
| module_param (node, int, 0) |
|
| module_param_string (device, device, sizeof(device), 0) |
|
| module_param (timeout, int, 0) |
|
| module_param (backplane, int, 0) |
|
| module_param (clockp, int, 0) |
|
| module_param (clockm, int, 0) |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_DEVICE_TABLE (pci, com20020pci_id_table) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
com20020pci_id_table |
|
|
) |
| |
module_param |
( |
backplane |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
clockp |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
clockm |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |