https://github.com/torvalds/linux
Revision 5b5cfc3674756d249cb389bbd2a0be94abae5f7c authored by Jean-François Moine on 09 August 2011, 18:13:50 UTC, committed by Mauro Carvalho Chehab on 11 September 2011, 12:33:37 UTC
The images are clearer with a lower bridge clock.

Signed-off-by: Jean-François Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
1 parent 313c68e
Raw File
Tip revision: 5b5cfc3674756d249cb389bbd2a0be94abae5f7c authored by Jean-François Moine on 09 August 2011, 18:13:50 UTC
[media] gspca - sonixj: Fix the darkness of sensor om6802 in 320x240
Tip revision: 5b5cfc3
read_write.h
/*
 * This file is only for sharing some helpers from read_write.c with compat.c.
 * Don't use anywhere else.
 */


typedef ssize_t (*io_fn_t)(struct file *, char __user *, size_t, loff_t *);
typedef ssize_t (*iov_fn_t)(struct kiocb *, const struct iovec *,
		unsigned long, loff_t);

ssize_t do_sync_readv_writev(struct file *filp, const struct iovec *iov,
		unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn);
ssize_t do_loop_readv_writev(struct file *filp, struct iovec *iov,
		unsigned long nr_segs, loff_t *ppos, io_fn_t fn);
back to top