#include <linux/module.h>
#include <linux/init.h>
#include <linux/videodev2.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <sound/aci.h>
Go to the source code of this file.
MODULE_AUTHOR |
( |
"Ruurd |
Reitsma, |
|
|
Krzysztof Helt" |
|
|
) |
| |
MODULE_DESCRIPTION |
( |
"A driver for the Miro PCM20 radio card." |
| ) |
|
module_exit |
( |
pcm20_cleanup |
| ) |
|
module_init |
( |
pcm20_init |
| ) |
|
module_param |
( |
radio_nr |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
mono |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
radio_nr |
, |
|
|
"Set radio device number (/dev/radioX). Default: -1 (autodetect)" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
mono |
, |
|
|
"Force tuner into mono mode." |
|
|
) |
| |