#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/pci.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/timer.h>
#include <linux/list.h>
#include <linux/usb.h>
#include <linux/usb/otg.h>
#include <linux/usb/hcd.h>
#include <linux/dma-mapping.h>
#include <linux/dmapool.h>
#include <linux/workqueue.h>
#include <linux/debugfs.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/unaligned.h>
#include <asm/byteorder.h>
#include "ohci.h"
#include "pci-quirks.h"
#include "ohci-hub.c"
#include "ohci-dbg.c"
#include "ohci-mem.c"
#include "ohci-q.c"
Go to the source code of this file.
#define DRIVER_AUTHOR "Roman Weissgaerber, David Brownell" |
#define DRIVER_DESC "USB 1.1 'Open' Host Controller (OHCI) Driver" |
module_exit |
( |
ohci_hcd_mod_exit |
| ) |
|
module_init |
( |
ohci_hcd_mod_init |
| ) |
|
module_param |
( |
distrust_firmware |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
no_handshake |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
distrust_firmware |
, |
|
|
"true to distrust firmware power/overcurrent setup" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
no_handshake |
, |
|
|
"true (not default) disables BIOS handshake" |
|
|
) |
| |