diff options
Diffstat (limited to 'drivers/media/radio/dsbr100.c')
-rw-r--r-- | drivers/media/radio/dsbr100.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/radio/dsbr100.c b/drivers/media/radio/dsbr100.c index 3a4eb444a7c3..0f06e6ffb0e9 100644 --- a/drivers/media/radio/dsbr100.c +++ b/drivers/media/radio/dsbr100.c | |||
@@ -274,7 +274,7 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
274 | static int vidioc_g_tuner(struct file *file, void *priv, | 274 | static int vidioc_g_tuner(struct file *file, void *priv, |
275 | struct v4l2_tuner *v) | 275 | struct v4l2_tuner *v) |
276 | { | 276 | { |
277 | struct dsbr100_device *radio = video_get_drvdata(video_devdata(file)); | 277 | struct dsbr100_device *radio = video_drvdata(file); |
278 | 278 | ||
279 | if (v->index > 0) | 279 | if (v->index > 0) |
280 | return -EINVAL; | 280 | return -EINVAL; |
@@ -306,7 +306,7 @@ static int vidioc_s_tuner(struct file *file, void *priv, | |||
306 | static int vidioc_s_frequency(struct file *file, void *priv, | 306 | static int vidioc_s_frequency(struct file *file, void *priv, |
307 | struct v4l2_frequency *f) | 307 | struct v4l2_frequency *f) |
308 | { | 308 | { |
309 | struct dsbr100_device *radio = video_get_drvdata(video_devdata(file)); | 309 | struct dsbr100_device *radio = video_drvdata(file); |
310 | 310 | ||
311 | radio->curfreq = f->frequency; | 311 | radio->curfreq = f->frequency; |
312 | if (dsbr100_setfreq(radio, radio->curfreq)==-1) | 312 | if (dsbr100_setfreq(radio, radio->curfreq)==-1) |
@@ -317,7 +317,7 @@ static int vidioc_s_frequency(struct file *file, void *priv, | |||
317 | static int vidioc_g_frequency(struct file *file, void *priv, | 317 | static int vidioc_g_frequency(struct file *file, void *priv, |
318 | struct v4l2_frequency *f) | 318 | struct v4l2_frequency *f) |
319 | { | 319 | { |
320 | struct dsbr100_device *radio = video_get_drvdata(video_devdata(file)); | 320 | struct dsbr100_device *radio = video_drvdata(file); |
321 | 321 | ||
322 | f->type = V4L2_TUNER_RADIO; | 322 | f->type = V4L2_TUNER_RADIO; |
323 | f->frequency = radio->curfreq; | 323 | f->frequency = radio->curfreq; |
@@ -342,7 +342,7 @@ static int vidioc_queryctrl(struct file *file, void *priv, | |||
342 | static int vidioc_g_ctrl(struct file *file, void *priv, | 342 | static int vidioc_g_ctrl(struct file *file, void *priv, |
343 | struct v4l2_control *ctrl) | 343 | struct v4l2_control *ctrl) |
344 | { | 344 | { |
345 | struct dsbr100_device *radio = video_get_drvdata(video_devdata(file)); | 345 | struct dsbr100_device *radio = video_drvdata(file); |
346 | 346 | ||
347 | switch (ctrl->id) { | 347 | switch (ctrl->id) { |
348 | case V4L2_CID_AUDIO_MUTE: | 348 | case V4L2_CID_AUDIO_MUTE: |
@@ -355,7 +355,7 @@ static int vidioc_g_ctrl(struct file *file, void *priv, | |||
355 | static int vidioc_s_ctrl(struct file *file, void *priv, | 355 | static int vidioc_s_ctrl(struct file *file, void *priv, |
356 | struct v4l2_control *ctrl) | 356 | struct v4l2_control *ctrl) |
357 | { | 357 | { |
358 | struct dsbr100_device *radio = video_get_drvdata(video_devdata(file)); | 358 | struct dsbr100_device *radio = video_drvdata(file); |
359 | 359 | ||
360 | switch (ctrl->id) { | 360 | switch (ctrl->id) { |
361 | case V4L2_CID_AUDIO_MUTE: | 361 | case V4L2_CID_AUDIO_MUTE: |
@@ -405,7 +405,7 @@ static int vidioc_s_audio(struct file *file, void *priv, | |||
405 | 405 | ||
406 | static int usb_dsbr100_open(struct inode *inode, struct file *file) | 406 | static int usb_dsbr100_open(struct inode *inode, struct file *file) |
407 | { | 407 | { |
408 | struct dsbr100_device *radio=video_get_drvdata(video_devdata(file)); | 408 | struct dsbr100_device *radio = video_drvdata(file); |
409 | 409 | ||
410 | lock_kernel(); | 410 | lock_kernel(); |
411 | radio->users = 1; | 411 | radio->users = 1; |
@@ -424,7 +424,7 @@ static int usb_dsbr100_open(struct inode *inode, struct file *file) | |||
424 | 424 | ||
425 | static int usb_dsbr100_close(struct inode *inode, struct file *file) | 425 | static int usb_dsbr100_close(struct inode *inode, struct file *file) |
426 | { | 426 | { |
427 | struct dsbr100_device *radio=video_get_drvdata(video_devdata(file)); | 427 | struct dsbr100_device *radio = video_drvdata(file); |
428 | 428 | ||
429 | if (!radio) | 429 | if (!radio) |
430 | return -ENODEV; | 430 | return -ENODEV; |