radio-miropcm20.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) | radio-miropcm20.c (90ab5ee94171b3e28de6bb42ee30b527014e0be7) |
---|---|
1/* Miro PCM20 radio driver for Linux radio support 2 * (c) 1998 Ruurd Reitsma <R.A.Reitsma@wbmt.tudelft.nl> 3 * Thanks to Norberto Pellici for the ACI device interface specification 4 * The API part is based on the radiotrack driver by M. Kirkwood 5 * This driver relies on the aci mixer provided by the snd-miro 6 * ALSA driver. 7 * Look there for further info... 8 */ --- 9 unchanged lines hidden (view full) --- 18#include <media/v4l2-device.h> 19#include <media/v4l2-ioctl.h> 20#include <sound/aci.h> 21 22static int radio_nr = -1; 23module_param(radio_nr, int, 0); 24MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)"); 25 | 1/* Miro PCM20 radio driver for Linux radio support 2 * (c) 1998 Ruurd Reitsma <R.A.Reitsma@wbmt.tudelft.nl> 3 * Thanks to Norberto Pellici for the ACI device interface specification 4 * The API part is based on the radiotrack driver by M. Kirkwood 5 * This driver relies on the aci mixer provided by the snd-miro 6 * ALSA driver. 7 * Look there for further info... 8 */ --- 9 unchanged lines hidden (view full) --- 18#include <media/v4l2-device.h> 19#include <media/v4l2-ioctl.h> 20#include <sound/aci.h> 21 22static int radio_nr = -1; 23module_param(radio_nr, int, 0); 24MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)"); 25 |
26static int mono; | 26static bool mono; |
27module_param(mono, bool, 0); 28MODULE_PARM_DESC(mono, "Force tuner into mono mode."); 29 30struct pcm20 { 31 struct v4l2_device v4l2_dev; 32 struct video_device vdev; 33 unsigned long freq; 34 int muted; --- 238 unchanged lines hidden --- | 27module_param(mono, bool, 0); 28MODULE_PARM_DESC(mono, "Force tuner into mono mode."); 29 30struct pcm20 { 31 struct v4l2_device v4l2_dev; 32 struct video_device vdev; 33 unsigned long freq; 34 int muted; --- 238 unchanged lines hidden --- |