blob: 0245198469ecbc01bfa52d9883ce4d7bd72b3581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __MEDIA_I2C_DS90UB9XX_H__
#define __MEDIA_I2C_DS90UB9XX_H__
#include <linux/types.h>
struct i2c_atr;
/**
* struct ds90ub9xx_platform_data - platform data for FPD-Link Serializers.
* @port: Deserializer RX port for this Serializer
* @atr: I2C ATR
* @bc_rate: back-channel clock rate
*/
struct ds90ub9xx_platform_data {
u32 port;
struct i2c_atr *atr;
unsigned long bc_rate;
};
#endif /* __MEDIA_I2C_DS90UB9XX_H__ */
|