#include <linux/module.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/videodev2.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include "radio-isa.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Dr. Henrik Seidel") |
|
| MODULE_DESCRIPTION ("A driver for the Typhoon radio card (a.k.a. EcoRadio).") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_VERSION ("0.1.99") |
|
| module_param_array (io, int, NULL, 0444) |
|
| MODULE_PARM_DESC (io,"I/O addresses of the Typhoon card (0x316 or 0x336)") |
|
| module_param_array (radio_nr, int, NULL, 0444) |
|
| MODULE_PARM_DESC (radio_nr,"Radio device numbers") |
|
| module_param (mutefreq, ulong, 0) |
|
| MODULE_PARM_DESC (mutefreq,"Frequency used when muting the card (in kHz)") |
|
| module_init (typhoon_init) |
|
| module_exit (typhoon_exit) |
|
#define CONFIG_RADIO_TYPHOON_MUTEFREQ 87000 |
#define CONFIG_RADIO_TYPHOON_PORT -1 |
#define DRIVER_VERSION "0.1.2" |
MODULE_AUTHOR |
( |
"Dr. Henrik Seidel" |
| ) |
|
module_exit |
( |
typhoon_exit |
| ) |
|
module_init |
( |
typhoon_init |
| ) |
|
module_param |
( |
mutefreq |
, |
|
|
ulong |
, |
|
|
0 |
|
|
) |
| |
module_param_array |
( |
io |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
module_param_array |
( |
radio_nr |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
io |
, |
|
|
"I/O addresses of the Typhoon card (0x316 or 0x336)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
radio_nr |
, |
|
|
"Radio device numbers" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
mutefreq |
, |
|
|
"Frequency used when muting the card (in kHz)" |
|
|
) |
| |
MODULE_VERSION |
( |
"0.1.99" |
| ) |
|