brintos

brintos / linux-shallow public Read only

0
0
Text · 613 B · de6000e Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (c) 2011 Wind River Systems, Inc.4 *5 * Author:  Anders Wallin <anders.wallin@windriver.com>6 */7 8#ifndef __STA2X11_VIP_H9#define __STA2X11_VIP_H10 11/**12 * struct vip_config - video input configuration data13 * @pwr_name: ADV powerdown name14 * @pwr_pin: ADV powerdown pin15 * @reset_name: ADV reset name16 * @reset_pin: ADV reset pin17 * @i2c_id: ADV i2c adapter ID18 * @i2c_addr: ADV i2c address19 */20struct vip_config {21	const char *pwr_name;22	int pwr_pin;23	const char *reset_name;24	int reset_pin;25	int i2c_id;26	int i2c_addr;27};28 29#endif /* __STA2X11_VIP_H */30