#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/delay.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/bootmem.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 (io, int, 0) |
|
| module_param (irq, 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") |
|
| __setup ("com20020=", com20020isa_setup) |
|
#define VERSION "arcnet: COM20020 ISA support (by David Woodhouse et al.)\n" |
module_param |
( |
io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
irq |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
backplane |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
clockp |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
clockm |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |