brintos

brintos / linux-shallow public Read only

0
0
Text · 381 B · cf4dc12 Raw
20 lines · c
1#ifndef DW_HDMI_CEC_H2#define DW_HDMI_CEC_H3 4struct dw_hdmi;5 6struct dw_hdmi_cec_ops {7	void (*write)(struct dw_hdmi *hdmi, u8 val, int offset);8	u8 (*read)(struct dw_hdmi *hdmi, int offset);9	void (*enable)(struct dw_hdmi *hdmi);10	void (*disable)(struct dw_hdmi *hdmi);11};12 13struct dw_hdmi_cec_data {14	struct dw_hdmi *hdmi;15	const struct dw_hdmi_cec_ops *ops;16	int irq;17};18 19#endif20