xref: /openbmc/linux/include/media/i2c/ov2659.h (revision 8ab59da2)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Omnivision OV2659 CMOS Image Sensor driver
4  *
5  * Copyright (C) 2015 Texas Instruments, Inc.
6  *
7  * Benoit Parrot <bparrot@ti.com>
8  * Lad, Prabhakar <prabhakar.csengg@gmail.com>
9  */
10 
11 #ifndef OV2659_H
12 #define OV2659_H
13 
14 /**
15  * struct ov2659_platform_data - ov2659 driver platform data
16  * @link_frequency: target pixel clock frequency
17  */
18 struct ov2659_platform_data {
19 	s64 link_frequency;
20 };
21 
22 #endif /* OV2659_H */
23