Merge tag 'sched_ext-for-6.12-rc1-fixes-1' of git://git.kernel.org/pub/scm/linux...
[linux-2.6-block.git] / include / media / i2c / ov7670.h
CommitLineData
12237550 1/* SPDX-License-Identifier: GPL-2.0-only */
75e2bdad
DD
2/*
3 * A V4L2 driver for OmniVision OV7670 cameras.
4 *
5 * Copyright 2010 One Laptop Per Child
75e2bdad
DD
6 */
7
8#ifndef __OV7670_H
9#define __OV7670_H
10
11struct ov7670_config {
12 int min_width; /* Filter out smaller sizes */
13 int min_height; /* Filter out smaller sizes */
14 int clock_speed; /* External clock speed (MHz) */
15 bool use_smbus; /* Use smbus I/O instead of I2C */
04ee6d92 16 bool pll_bypass; /* Choose whether to bypass the PLL */
ee95258e 17 bool pclk_hb_disable; /* Disable toggling pixclk during horizontal blanking */
75e2bdad
DD
18};
19
20#endif