diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-05-22 13:31:57 (GMT) |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 05:00:01 (GMT) |
commit | 07f640f0ddd72e6158fca7f0694dbaf95cee4d2c (patch) | |
tree | 0286cbf42dcb6b2b1869b3c663c375e858e4cf4b | |
parent | 861018a6a9b55ca1a5bf8cd0ff2d47944ce88827 (diff) | |
download | linux-fsl-qoriq-07f640f0ddd72e6158fca7f0694dbaf95cee4d2c.tar.xz |
V4L/DVB (3973a): Return value is ssize_t
This patch fix a difference between v4l/dvb tree and kernel tree.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/dvb/bt8xx/dst_ca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/bt8xx/dst_ca.c b/drivers/media/dvb/bt8xx/dst_ca.c index f6b49a8..fee27d5 100644 --- a/drivers/media/dvb/bt8xx/dst_ca.c +++ b/drivers/media/dvb/bt8xx/dst_ca.c @@ -582,7 +582,7 @@ static int dst_ca_release(struct inode *inode, struct file *file) static ssize_t dst_ca_read(struct file *file, char __user *buffer, size_t length, loff_t *offset) { - int bytes_read = 0; + ssize_t bytes_read = 0; dprintk(verbose, DST_CA_DEBUG, 1, " Device read."); |