#include <linux/module.h>
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/interrupt.h>
#include <linux/skbuff.h>
#include <linux/init.h>
#include <linux/zorro.h>
#include <linux/bitops.h>
#include <asm/amigaints.h>
#include <asm/amigahw.h>
#include <asm/irq.h>
#include "ariadne.h"
Go to the source code of this file.
#define lowb |
( |
|
x | ) |
(x & 0xff) |
#define PKT_BUF_SIZE 1520 |
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
#define swapw |
( |
|
x | ) |
(((x >> 8) & 0x00ff) | ((x << 8) & 0xff00)) |
#define swhighw |
( |
|
x | ) |
((((x) >> 8) & 0xff00) | (((x) >> 24) & 0x00ff)) |
#define swloww |
( |
|
x | ) |
((((x) << 8) & 0xff00) | (((x) >> 8) & 0x00ff)) |
MODULE_DEVICE_TABLE |
( |
zorro |
, |
|
|
ariadne_zorro_tbl |
|
|
) |
| |
module_exit |
( |
ariadne_cleanup_module |
| ) |
|
module_init |
( |
ariadne_init_module |
| ) |
|