#include <linux/module.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/videodev2.h>
#include <linux/param.h>
#include <linux/pnp.h>
#include <linux/sched.h>
#include <linux/io.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-fh.h>
#include <media/v4l2-event.h>
Go to the source code of this file.
|
| MODULE_AUTHOR ("Fred Gleason, Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath") |
|
| MODULE_DESCRIPTION ("A driver for the ADS Cadet AM/FM/RDS radio card.") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION ("0.3.4") |
|
| module_param (io, int, 0) |
|
| MODULE_PARM_DESC (io,"I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)") |
|
| module_param (radio_nr, int, 0) |
|
| module_init (cadet_init) |
|
| module_exit (cadet_exit) |
|
MODULE_AUTHOR |
( |
"Fred |
Gleason, |
|
|
Russell |
Kroll, |
|
|
Quay |
Lu, |
|
|
Donald |
Song, |
|
|
Jason |
Lewis, |
|
|
Scott |
McGrath, |
|
|
William McGrath" |
|
|
) |
| |
module_exit |
( |
cadet_exit |
| ) |
|
module_init |
( |
cadet_init |
| ) |
|
module_param |
( |
io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
radio_nr |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
io |
, |
|
|
"I/O address of Cadet card (0x330,0x332,0x334,0x336,0x338,0x33a,0x33c,0x33e)" |
|
|
) |
| |
MODULE_VERSION |
( |
"0.3.4" |
| ) |
|