/* SPDX-License-Identifier: GPL-2.0 */1/* mt9t112 Camera2*3* Copyright (C) 2009 Renesas Solutions Corp.4* Kuninori Morimoto <[email protected]>5*/67#ifndef __MT9T112_H__8#define __MT9T112_H__910struct mt9t112_pll_divider {11u8 m, n;12u8 p1, p2, p3, p4, p5, p6, p7;13};1415/**16* struct mt9t112_platform_data - mt9t112 driver interface17* @flags: Sensor media bus configuration.18* @divider: Sensor PLL configuration19*/20struct mt9t112_platform_data {21#define MT9T112_FLAG_PCLK_RISING_EDGE BIT(0)22u32 flags;23struct mt9t112_pll_divider divider;24};2526#endif /* __MT9T112_H__ */272829