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 v5.13 19 lines 381 B view raw
1#ifndef DW_HDMI_CEC_H 2#define DW_HDMI_CEC_H 3 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#endif