diff options
Diffstat (limited to 'drivers/media/radio/radio-miropcm20.c')
| -rw-r--r-- | drivers/media/radio/radio-miropcm20.c | 304 |
1 files changed, 286 insertions, 18 deletions
diff --git a/drivers/media/radio/radio-miropcm20.c b/drivers/media/radio/radio-miropcm20.c index a7e93d7477dd..998919e97dfe 100644 --- a/drivers/media/radio/radio-miropcm20.c +++ b/drivers/media/radio/radio-miropcm20.c | |||
| @@ -1,20 +1,35 @@ | |||
| 1 | /* Miro PCM20 radio driver for Linux radio support | 1 | /* |
| 2 | * Miro PCM20 radio driver for Linux radio support | ||
| 2 | * (c) 1998 Ruurd Reitsma <R.A.Reitsma@wbmt.tudelft.nl> | 3 | * (c) 1998 Ruurd Reitsma <R.A.Reitsma@wbmt.tudelft.nl> |
| 3 | * Thanks to Norberto Pellici for the ACI device interface specification | 4 | * Thanks to Norberto Pellici for the ACI device interface specification |
| 4 | * The API part is based on the radiotrack driver by M. Kirkwood | 5 | * 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 | * This driver relies on the aci mixer provided by the snd-miro |
| 6 | * ALSA driver. | 7 | * ALSA driver. |
| 7 | * Look there for further info... | 8 | * Look there for further info... |
| 8 | */ | 9 | * |
| 9 | 10 | * From the original miro RDS sources: | |
| 10 | /* What ever you think about the ACI, version 0x07 is not very well! | 11 | * |
| 11 | * I can't get frequency, 'tuner status', 'tuner flags' or mute/mono | 12 | * (c) 2001 Robert Siemer <Robert.Siemer@gmx.de> |
| 12 | * conditions... Robert | 13 | * |
| 14 | * Many thanks to Fred Seidel <seidel@metabox.de>, the | ||
| 15 | * designer of the RDS decoder hardware. With his help | ||
| 16 | * I was able to code this driver. | ||
| 17 | * Thanks also to Norberto Pellicci, Dominic Mounteney | ||
| 18 | * <DMounteney@pinnaclesys.com> and www.teleauskunft.de | ||
| 19 | * for good hints on finding Fred. It was somewhat hard | ||
| 20 | * to locate him here in Germany... [: | ||
| 21 | * | ||
| 22 | * This code has been reintroduced and converted to use | ||
| 23 | * the new V4L2 RDS API by: | ||
| 24 | * | ||
| 25 | * Hans Verkuil <hans.verkuil@cisco.com> | ||
| 13 | */ | 26 | */ |
| 14 | 27 | ||
| 15 | #include <linux/module.h> | 28 | #include <linux/module.h> |
| 16 | #include <linux/init.h> | 29 | #include <linux/init.h> |
| 30 | #include <linux/delay.h> | ||
| 17 | #include <linux/videodev2.h> | 31 | #include <linux/videodev2.h> |
| 32 | #include <linux/kthread.h> | ||
| 18 | #include <media/v4l2-device.h> | 33 | #include <media/v4l2-device.h> |
| 19 | #include <media/v4l2-ioctl.h> | 34 | #include <media/v4l2-ioctl.h> |
| 20 | #include <media/v4l2-ctrls.h> | 35 | #include <media/v4l2-ctrls.h> |
| @@ -22,6 +37,22 @@ | |||
| 22 | #include <media/v4l2-event.h> | 37 | #include <media/v4l2-event.h> |
| 23 | #include <sound/aci.h> | 38 | #include <sound/aci.h> |
| 24 | 39 | ||
| 40 | #define RDS_DATASHIFT 2 /* Bit 2 */ | ||
| 41 | #define RDS_DATAMASK (1 << RDS_DATASHIFT) | ||
| 42 | #define RDS_BUSYMASK 0x10 /* Bit 4 */ | ||
| 43 | #define RDS_CLOCKMASK 0x08 /* Bit 3 */ | ||
| 44 | #define RDS_DATA(x) (((x) >> RDS_DATASHIFT) & 1) | ||
| 45 | |||
| 46 | #define RDS_STATUS 0x01 | ||
| 47 | #define RDS_STATIONNAME 0x02 | ||
| 48 | #define RDS_TEXT 0x03 | ||
| 49 | #define RDS_ALTFREQ 0x04 | ||
| 50 | #define RDS_TIMEDATE 0x05 | ||
| 51 | #define RDS_PI_CODE 0x06 | ||
| 52 | #define RDS_PTYTATP 0x07 | ||
| 53 | #define RDS_RESET 0x08 | ||
| 54 | #define RDS_RXVALUE 0x09 | ||
| 55 | |||
| 25 | static int radio_nr = -1; | 56 | static int radio_nr = -1; |
| 26 | module_param(radio_nr, int, 0); | 57 | module_param(radio_nr, int, 0); |
| 27 | MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)"); | 58 | MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)"); |
| @@ -30,6 +61,14 @@ struct pcm20 { | |||
| 30 | struct v4l2_device v4l2_dev; | 61 | struct v4l2_device v4l2_dev; |
| 31 | struct video_device vdev; | 62 | struct video_device vdev; |
| 32 | struct v4l2_ctrl_handler ctrl_handler; | 63 | struct v4l2_ctrl_handler ctrl_handler; |
| 64 | struct v4l2_ctrl *rds_pty; | ||
| 65 | struct v4l2_ctrl *rds_ps_name; | ||
| 66 | struct v4l2_ctrl *rds_radio_test; | ||
| 67 | struct v4l2_ctrl *rds_ta; | ||
| 68 | struct v4l2_ctrl *rds_tp; | ||
| 69 | struct v4l2_ctrl *rds_ms; | ||
| 70 | /* thread for periodic RDS status checking */ | ||
| 71 | struct task_struct *kthread; | ||
| 33 | unsigned long freq; | 72 | unsigned long freq; |
| 34 | u32 audmode; | 73 | u32 audmode; |
| 35 | struct snd_miro_aci *aci; | 74 | struct snd_miro_aci *aci; |
| @@ -41,6 +80,103 @@ static struct pcm20 pcm20_card = { | |||
| 41 | .audmode = V4L2_TUNER_MODE_STEREO, | 80 | .audmode = V4L2_TUNER_MODE_STEREO, |
| 42 | }; | 81 | }; |
| 43 | 82 | ||
| 83 | |||
| 84 | static int rds_waitread(struct snd_miro_aci *aci) | ||
| 85 | { | ||
| 86 | u8 byte; | ||
| 87 | int i = 2000; | ||
| 88 | |||
| 89 | do { | ||
| 90 | byte = inb(aci->aci_port + ACI_REG_RDS); | ||
| 91 | i--; | ||
| 92 | } while ((byte & RDS_BUSYMASK) && i); | ||
| 93 | |||
| 94 | /* | ||
| 95 | * It's magic, but without this the data that you read later on | ||
| 96 | * is unreliable and full of bit errors. With this 1 usec delay | ||
| 97 | * everything is fine. | ||
| 98 | */ | ||
| 99 | udelay(1); | ||
| 100 | return i ? byte : -1; | ||
| 101 | } | ||
| 102 | |||
| 103 | static int rds_rawwrite(struct snd_miro_aci *aci, u8 byte) | ||
| 104 | { | ||
| 105 | if (rds_waitread(aci) >= 0) { | ||
| 106 | outb(byte, aci->aci_port + ACI_REG_RDS); | ||
| 107 | return 0; | ||
| 108 | } | ||
| 109 | return -1; | ||
| 110 | } | ||
| 111 | |||
| 112 | static int rds_write(struct snd_miro_aci *aci, u8 byte) | ||
| 113 | { | ||
| 114 | u8 sendbuffer[8]; | ||
| 115 | int i; | ||
| 116 | |||
| 117 | for (i = 7; i >= 0; i--) | ||
| 118 | sendbuffer[7 - i] = (byte & (1 << i)) ? RDS_DATAMASK : 0; | ||
| 119 | sendbuffer[0] |= RDS_CLOCKMASK; | ||
| 120 | |||
| 121 | for (i = 0; i < 8; i++) | ||
| 122 | rds_rawwrite(aci, sendbuffer[i]); | ||
| 123 | return 0; | ||
| 124 | } | ||
| 125 | |||
| 126 | static int rds_readcycle_nowait(struct snd_miro_aci *aci) | ||
| 127 | { | ||
| 128 | outb(0, aci->aci_port + ACI_REG_RDS); | ||
| 129 | return rds_waitread(aci); | ||
| 130 | } | ||
| 131 | |||
| 132 | static int rds_readcycle(struct snd_miro_aci *aci) | ||
| 133 | { | ||
| 134 | if (rds_rawwrite(aci, 0) < 0) | ||
| 135 | return -1; | ||
| 136 | return rds_waitread(aci); | ||
| 137 | } | ||
| 138 | |||
| 139 | static int rds_ack(struct snd_miro_aci *aci) | ||
| 140 | { | ||
| 141 | int i = rds_readcycle(aci); | ||
| 142 | |||
| 143 | if (i < 0) | ||
| 144 | return -1; | ||
| 145 | if (i & RDS_DATAMASK) | ||
| 146 | return 0; /* ACK */ | ||
| 147 | return 1; /* NACK */ | ||
| 148 | } | ||
| 149 | |||
| 150 | static int rds_cmd(struct snd_miro_aci *aci, u8 cmd, u8 databuffer[], u8 datasize) | ||
| 151 | { | ||
| 152 | int i, j; | ||
| 153 | |||
| 154 | rds_write(aci, cmd); | ||
| 155 | |||
| 156 | /* RDS_RESET doesn't need further processing */ | ||
| 157 | if (cmd == RDS_RESET) | ||
| 158 | return 0; | ||
| 159 | if (rds_ack(aci)) | ||
| 160 | return -EIO; | ||
| 161 | if (datasize == 0) | ||
| 162 | return 0; | ||
| 163 | |||
| 164 | /* to be able to use rds_readcycle_nowait() | ||
| 165 | I have to waitread() here */ | ||
| 166 | if (rds_waitread(aci) < 0) | ||
| 167 | return -1; | ||
| 168 | |||
| 169 | memset(databuffer, 0, datasize); | ||
| 170 | |||
| 171 | for (i = 0; i < 8 * datasize; i++) { | ||
| 172 | j = rds_readcycle_nowait(aci); | ||
| 173 | if (j < 0) | ||
| 174 | return -EIO; | ||
| 175 | databuffer[i / 8] |= RDS_DATA(j) << (7 - (i % 8)); | ||
| 176 | } | ||
| 177 | return 0; | ||
| 178 | } | ||
| 179 | |||
| 44 | static int pcm20_setfreq(struct pcm20 *dev, unsigned long freq) | 180 | static int pcm20_setfreq(struct pcm20 *dev, unsigned long freq) |
| 45 | { | 181 | { |
| 46 | unsigned char freql; | 182 | unsigned char freql; |
| @@ -54,17 +190,10 @@ static int pcm20_setfreq(struct pcm20 *dev, unsigned long freq) | |||
| 54 | freql = freq & 0xff; | 190 | freql = freq & 0xff; |
| 55 | freqh = freq >> 8; | 191 | freqh = freq >> 8; |
| 56 | 192 | ||
| 193 | rds_cmd(aci, RDS_RESET, NULL, 0); | ||
| 57 | return snd_aci_cmd(aci, ACI_WRITE_TUNE, freql, freqh); | 194 | return snd_aci_cmd(aci, ACI_WRITE_TUNE, freql, freqh); |
| 58 | } | 195 | } |
| 59 | 196 | ||
| 60 | static const struct v4l2_file_operations pcm20_fops = { | ||
| 61 | .owner = THIS_MODULE, | ||
| 62 | .open = v4l2_fh_open, | ||
| 63 | .poll = v4l2_ctrl_poll, | ||
| 64 | .release = v4l2_fh_release, | ||
| 65 | .unlocked_ioctl = video_ioctl2, | ||
| 66 | }; | ||
| 67 | |||
| 68 | static int vidioc_querycap(struct file *file, void *priv, | 197 | static int vidioc_querycap(struct file *file, void *priv, |
| 69 | struct v4l2_capability *v) | 198 | struct v4l2_capability *v) |
| 70 | { | 199 | { |
| @@ -73,16 +202,31 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
| 73 | strlcpy(v->driver, "Miro PCM20", sizeof(v->driver)); | 202 | strlcpy(v->driver, "Miro PCM20", sizeof(v->driver)); |
| 74 | strlcpy(v->card, "Miro PCM20", sizeof(v->card)); | 203 | strlcpy(v->card, "Miro PCM20", sizeof(v->card)); |
| 75 | snprintf(v->bus_info, sizeof(v->bus_info), "ISA:%s", dev->v4l2_dev.name); | 204 | snprintf(v->bus_info, sizeof(v->bus_info), "ISA:%s", dev->v4l2_dev.name); |
| 76 | v->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO; | 205 | v->device_caps = V4L2_CAP_TUNER | V4L2_CAP_RADIO | V4L2_CAP_RDS_CAPTURE; |
| 77 | v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS; | 206 | v->capabilities = v->device_caps | V4L2_CAP_DEVICE_CAPS; |
| 78 | return 0; | 207 | return 0; |
| 79 | } | 208 | } |
| 80 | 209 | ||
| 210 | static bool sanitize(char *p, int size) | ||
| 211 | { | ||
| 212 | int i; | ||
| 213 | bool ret = true; | ||
| 214 | |||
| 215 | for (i = 0; i < size; i++) { | ||
| 216 | if (p[i] < 32) { | ||
| 217 | p[i] = ' '; | ||
| 218 | ret = false; | ||
| 219 | } | ||
| 220 | } | ||
| 221 | return ret; | ||
| 222 | } | ||
| 223 | |||
| 81 | static int vidioc_g_tuner(struct file *file, void *priv, | 224 | static int vidioc_g_tuner(struct file *file, void *priv, |
| 82 | struct v4l2_tuner *v) | 225 | struct v4l2_tuner *v) |
| 83 | { | 226 | { |
| 84 | struct pcm20 *dev = video_drvdata(file); | 227 | struct pcm20 *dev = video_drvdata(file); |
| 85 | int res; | 228 | int res; |
| 229 | u8 buf; | ||
| 86 | 230 | ||
| 87 | if (v->index) | 231 | if (v->index) |
| 88 | return -EINVAL; | 232 | return -EINVAL; |
| @@ -97,8 +241,12 @@ static int vidioc_g_tuner(struct file *file, void *priv, | |||
| 97 | res = snd_aci_cmd(dev->aci, ACI_READ_TUNERSTEREO, -1, -1); | 241 | res = snd_aci_cmd(dev->aci, ACI_READ_TUNERSTEREO, -1, -1); |
| 98 | v->rxsubchans = (res & 0x40) ? V4L2_TUNER_SUB_MONO : | 242 | v->rxsubchans = (res & 0x40) ? V4L2_TUNER_SUB_MONO : |
| 99 | V4L2_TUNER_SUB_STEREO; | 243 | V4L2_TUNER_SUB_STEREO; |
| 100 | v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO; | 244 | v->capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO | |
| 245 | V4L2_TUNER_CAP_RDS | V4L2_TUNER_CAP_RDS_CONTROLS; | ||
| 101 | v->audmode = dev->audmode; | 246 | v->audmode = dev->audmode; |
| 247 | res = rds_cmd(dev->aci, RDS_RXVALUE, &buf, 1); | ||
| 248 | if (res >= 0 && buf) | ||
| 249 | v->rxsubchans |= V4L2_TUNER_SUB_RDS; | ||
| 102 | return 0; | 250 | return 0; |
| 103 | } | 251 | } |
| 104 | 252 | ||
| @@ -157,6 +305,115 @@ static int pcm20_s_ctrl(struct v4l2_ctrl *ctrl) | |||
| 157 | return -EINVAL; | 305 | return -EINVAL; |
| 158 | } | 306 | } |
| 159 | 307 | ||
| 308 | static int pcm20_thread(void *data) | ||
| 309 | { | ||
| 310 | struct pcm20 *dev = data; | ||
| 311 | const unsigned no_rds_start_counter = 5; | ||
| 312 | const unsigned sleep_msecs = 2000; | ||
| 313 | unsigned no_rds_counter = no_rds_start_counter; | ||
| 314 | |||
| 315 | for (;;) { | ||
| 316 | char text_buffer[66]; | ||
| 317 | u8 buf; | ||
| 318 | int res; | ||
| 319 | |||
| 320 | msleep_interruptible(sleep_msecs); | ||
| 321 | |||
| 322 | if (kthread_should_stop()) | ||
| 323 | break; | ||
| 324 | |||
| 325 | res = rds_cmd(dev->aci, RDS_RXVALUE, &buf, 1); | ||
| 326 | if (res) | ||
| 327 | continue; | ||
| 328 | if (buf == 0) { | ||
| 329 | if (no_rds_counter == 0) | ||
| 330 | continue; | ||
| 331 | no_rds_counter--; | ||
| 332 | if (no_rds_counter) | ||
| 333 | continue; | ||
| 334 | |||
| 335 | /* | ||
| 336 | * No RDS seen for no_rds_start_counter * sleep_msecs | ||
| 337 | * milliseconds, clear all RDS controls to their | ||
| 338 | * default values. | ||
| 339 | */ | ||
| 340 | v4l2_ctrl_s_ctrl_string(dev->rds_ps_name, ""); | ||
| 341 | v4l2_ctrl_s_ctrl(dev->rds_ms, 1); | ||
| 342 | v4l2_ctrl_s_ctrl(dev->rds_ta, 0); | ||
| 343 | v4l2_ctrl_s_ctrl(dev->rds_tp, 0); | ||
| 344 | v4l2_ctrl_s_ctrl(dev->rds_pty, 0); | ||
| 345 | v4l2_ctrl_s_ctrl_string(dev->rds_radio_test, ""); | ||
| 346 | continue; | ||
| 347 | } | ||
| 348 | no_rds_counter = no_rds_start_counter; | ||
| 349 | |||
| 350 | res = rds_cmd(dev->aci, RDS_STATUS, &buf, 1); | ||
| 351 | if (res) | ||
| 352 | continue; | ||
| 353 | if ((buf >> 3) & 1) { | ||
| 354 | res = rds_cmd(dev->aci, RDS_STATIONNAME, text_buffer, 8); | ||
| 355 | text_buffer[8] = 0; | ||
| 356 | if (!res && sanitize(text_buffer, 8)) | ||
| 357 | v4l2_ctrl_s_ctrl_string(dev->rds_ps_name, text_buffer); | ||
| 358 | } | ||
| 359 | if ((buf >> 6) & 1) { | ||
| 360 | u8 pty; | ||
| 361 | |||
| 362 | res = rds_cmd(dev->aci, RDS_PTYTATP, &pty, 1); | ||
| 363 | if (!res) { | ||
| 364 | v4l2_ctrl_s_ctrl(dev->rds_ms, !!(pty & 0x01)); | ||
| 365 | v4l2_ctrl_s_ctrl(dev->rds_ta, !!(pty & 0x02)); | ||
| 366 | v4l2_ctrl_s_ctrl(dev->rds_tp, !!(pty & 0x80)); | ||
| 367 | v4l2_ctrl_s_ctrl(dev->rds_pty, (pty >> 2) & 0x1f); | ||
| 368 | } | ||
| 369 | } | ||
| 370 | if ((buf >> 4) & 1) { | ||
| 371 | res = rds_cmd(dev->aci, RDS_TEXT, text_buffer, 65); | ||
| 372 | text_buffer[65] = 0; | ||
| 373 | if (!res && sanitize(text_buffer + 1, 64)) | ||
| 374 | v4l2_ctrl_s_ctrl_string(dev->rds_radio_test, text_buffer + 1); | ||
| 375 | } | ||
| 376 | } | ||
| 377 | return 0; | ||
| 378 | } | ||
| 379 | |||
| 380 | static int pcm20_open(struct file *file) | ||
| 381 | { | ||
| 382 | struct pcm20 *dev = video_drvdata(file); | ||
| 383 | int res = v4l2_fh_open(file); | ||
| 384 | |||
| 385 | if (!res && v4l2_fh_is_singular_file(file) && | ||
| 386 | IS_ERR_OR_NULL(dev->kthread)) { | ||
| 387 | dev->kthread = kthread_run(pcm20_thread, dev, "%s", | ||
| 388 | dev->v4l2_dev.name); | ||
| 389 | if (IS_ERR(dev->kthread)) { | ||
| 390 | v4l2_err(&dev->v4l2_dev, "kernel_thread() failed\n"); | ||
| 391 | v4l2_fh_release(file); | ||
| 392 | return PTR_ERR(dev->kthread); | ||
| 393 | } | ||
| 394 | } | ||
| 395 | return res; | ||
| 396 | } | ||
| 397 | |||
| 398 | static int pcm20_release(struct file *file) | ||
| 399 | { | ||
| 400 | struct pcm20 *dev = video_drvdata(file); | ||
| 401 | |||
| 402 | if (v4l2_fh_is_singular_file(file) && !IS_ERR_OR_NULL(dev->kthread)) { | ||
| 403 | kthread_stop(dev->kthread); | ||
| 404 | dev->kthread = NULL; | ||
| 405 | } | ||
| 406 | return v4l2_fh_release(file); | ||
| 407 | } | ||
| 408 | |||
| 409 | static const struct v4l2_file_operations pcm20_fops = { | ||
| 410 | .owner = THIS_MODULE, | ||
| 411 | .open = pcm20_open, | ||
| 412 | .poll = v4l2_ctrl_poll, | ||
| 413 | .release = pcm20_release, | ||
| 414 | .unlocked_ioctl = video_ioctl2, | ||
| 415 | }; | ||
| 416 | |||
| 160 | static const struct v4l2_ioctl_ops pcm20_ioctl_ops = { | 417 | static const struct v4l2_ioctl_ops pcm20_ioctl_ops = { |
| 161 | .vidioc_querycap = vidioc_querycap, | 418 | .vidioc_querycap = vidioc_querycap, |
| 162 | .vidioc_g_tuner = vidioc_g_tuner, | 419 | .vidioc_g_tuner = vidioc_g_tuner, |
| @@ -195,9 +452,21 @@ static int __init pcm20_init(void) | |||
| 195 | } | 452 | } |
| 196 | 453 | ||
| 197 | hdl = &dev->ctrl_handler; | 454 | hdl = &dev->ctrl_handler; |
| 198 | v4l2_ctrl_handler_init(hdl, 1); | 455 | v4l2_ctrl_handler_init(hdl, 7); |
| 199 | v4l2_ctrl_new_std(hdl, &pcm20_ctrl_ops, | 456 | v4l2_ctrl_new_std(hdl, &pcm20_ctrl_ops, |
| 200 | V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1); | 457 | V4L2_CID_AUDIO_MUTE, 0, 1, 1, 1); |
| 458 | dev->rds_pty = v4l2_ctrl_new_std(hdl, NULL, | ||
| 459 | V4L2_CID_RDS_RX_PTY, 0, 0x1f, 1, 0); | ||
| 460 | dev->rds_ps_name = v4l2_ctrl_new_std(hdl, NULL, | ||
| 461 | V4L2_CID_RDS_RX_PS_NAME, 0, 8, 8, 0); | ||
| 462 | dev->rds_radio_test = v4l2_ctrl_new_std(hdl, NULL, | ||
| 463 | V4L2_CID_RDS_RX_RADIO_TEXT, 0, 64, 64, 0); | ||
| 464 | dev->rds_ta = v4l2_ctrl_new_std(hdl, NULL, | ||
| 465 | V4L2_CID_RDS_RX_TRAFFIC_ANNOUNCEMENT, 0, 1, 1, 0); | ||
| 466 | dev->rds_tp = v4l2_ctrl_new_std(hdl, NULL, | ||
| 467 | V4L2_CID_RDS_RX_TRAFFIC_PROGRAM, 0, 1, 1, 0); | ||
| 468 | dev->rds_ms = v4l2_ctrl_new_std(hdl, NULL, | ||
| 469 | V4L2_CID_RDS_RX_MUSIC_SPEECH, 0, 1, 1, 1); | ||
| 201 | v4l2_dev->ctrl_handler = hdl; | 470 | v4l2_dev->ctrl_handler = hdl; |
| 202 | if (hdl->error) { | 471 | if (hdl->error) { |
| 203 | res = hdl->error; | 472 | res = hdl->error; |
| @@ -210,7 +479,6 @@ static int __init pcm20_init(void) | |||
| 210 | dev->vdev.ioctl_ops = &pcm20_ioctl_ops; | 479 | dev->vdev.ioctl_ops = &pcm20_ioctl_ops; |
| 211 | dev->vdev.release = video_device_release_empty; | 480 | dev->vdev.release = video_device_release_empty; |
| 212 | dev->vdev.lock = &dev->lock; | 481 | dev->vdev.lock = &dev->lock; |
| 213 | set_bit(V4L2_FL_USE_FH_PRIO, &dev->vdev.flags); | ||
| 214 | video_set_drvdata(&dev->vdev, dev); | 482 | video_set_drvdata(&dev->vdev, dev); |
| 215 | snd_aci_cmd(dev->aci, ACI_SET_TUNERMONO, | 483 | snd_aci_cmd(dev->aci, ACI_SET_TUNERMONO, |
| 216 | dev->audmode == V4L2_TUNER_MODE_MONO, -1); | 484 | dev->audmode == V4L2_TUNER_MODE_MONO, -1); |
