#include <linux/module.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/videodev2.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h>
#include "radio-isa.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Russell Kroll, Quay Lu, Donald Song, Jason Lewis, Scott McGrath, William McGrath") |
|
| MODULE_DESCRIPTION ("A driver for the Aztech radio card.") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION ("1.0.0") |
|
| module_param_array (io, int, NULL, 0444) |
|
| MODULE_PARM_DESC (io,"I/O addresses of the Aztech card (0x350 or 0x358)") |
|
| module_param_array (radio_nr, int, NULL, 0444) |
|
| MODULE_PARM_DESC (radio_nr,"Radio device numbers") |
|
| module_init (aztech_init) |
|
| module_exit (aztech_exit) |
|
#define CONFIG_RADIO_AZTECH_PORT -1 |
MODULE_AUTHOR |
( |
"Russell |
Kroll, |
|
|
Quay |
Lu, |
|
|
Donald |
Song, |
|
|
Jason |
Lewis, |
|
|
Scott |
McGrath, |
|
|
William McGrath" |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"A driver for the Aztech radio card." |
| ) |
|
module_exit |
( |
aztech_exit |
| ) |
|
module_init |
( |
aztech_init |
| ) |
|
module_param_array |
( |
io |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
radio_nr |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
io |
, |
|
|
"I/O addresses of the Aztech card (0x350 or 0x358)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
radio_nr |
, |
|
|
"Radio device numbers" |
|
|
) |
| |
MODULE_VERSION |
( |
"1.0.0" |
| ) |
|