Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/media/i2c/ds90ub9xx.h
26285 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#ifndef __MEDIA_I2C_DS90UB9XX_H__
4
#define __MEDIA_I2C_DS90UB9XX_H__
5
6
#include <linux/types.h>
7
8
struct i2c_atr;
9
10
/**
11
* struct ds90ub9xx_platform_data - platform data for FPD-Link Serializers.
12
* @port: Deserializer RX port for this Serializer
13
* @atr: I2C ATR
14
* @bc_rate: back-channel clock rate
15
*/
16
struct ds90ub9xx_platform_data {
17
u32 port;
18
struct i2c_atr *atr;
19
unsigned long bc_rate;
20
};
21
22
#endif /* __MEDIA_I2C_DS90UB9XX_H__ */
23
24