Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/media/i2c/ov2659.h
26283 views
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 <[email protected]>
8
* Lad, Prabhakar <[email protected]>
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
24