diff options
Diffstat (limited to 'linux/drivers/media/video/bttv-driver.c')
-rw-r--r-- | linux/drivers/media/video/bttv-driver.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/linux/drivers/media/video/bttv-driver.c b/linux/drivers/media/video/bttv-driver.c index 60475ac97..8b60eff0c 100644 --- a/linux/drivers/media/video/bttv-driver.c +++ b/linux/drivers/media/video/bttv-driver.c @@ -1,5 +1,5 @@ /* - $Id: bttv-driver.c,v 1.53 2005/08/16 21:25:30 mchehab Exp $ + $Id: bttv-driver.c,v 1.54 2005/08/17 04:45:52 mkrufky Exp $ bttv - Bt848 frame grabber driver @@ -3167,10 +3167,10 @@ static int radio_release(struct inode *inode, struct file *file) struct bttv *btv = file->private_data; struct rds_command cmd; - btv->radio_user--; - + btv->radio_user--; + bttv_call_i2c_clients(btv, RDS_CMD_CLOSE, &cmd); - + return 0; } @@ -3235,9 +3235,9 @@ static ssize_t radio_read(struct file *file, char __user *data, cmd.buffer = data; cmd.instance = file; cmd.result = -ENODEV; - + bttv_call_i2c_clients(btv, RDS_CMD_READ, &cmd); - + return cmd.result; } @@ -3249,7 +3249,7 @@ static unsigned int radio_poll(struct file *file, poll_table *wait) cmd.event_list = wait; cmd.result = -ENODEV; bttv_call_i2c_clients(btv, RDS_CMD_POLL, &cmd); - + return cmd.result; } |