Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 22 lines 474 B view raw
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 8struct 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 */ 16struct ds90ub9xx_platform_data { 17 u32 port; 18 struct i2c_atr *atr; 19 unsigned long bc_rate; 20}; 21 22#endif /* __MEDIA_I2C_DS90UB9XX_H__ */