mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
b6f50b49b9
Set "y_skip_top" to zero and revise comment as I do not see this line corruption on two different mt9v022 setups. The first read-out line is perfectly fine. Add mt9v022 platform data configuring y_skip_top for platforms that have issues with the first read-out line. Set y_skip_top to 1 for pcm990 board. Signed-off-by: Anatolij Gustschin <agust@denx.de> Acked-by: Eric Miao <eric.y.miao@gmail.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
17 lines
362 B
C
17 lines
362 B
C
/*
|
|
* mt9v022 sensor
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __MT9V022_H__
|
|
#define __MT9V022_H__
|
|
|
|
struct mt9v022_platform_data {
|
|
unsigned short y_skip_top; /* Lines to skip at the top */
|
|
};
|
|
|
|
#endif
|