Back to home page

OSCL-LXR

 
 

    


0001 #ifndef DW_HDMI_CEC_H
0002 #define DW_HDMI_CEC_H
0003 
0004 struct dw_hdmi;
0005 
0006 struct dw_hdmi_cec_ops {
0007     void (*write)(struct dw_hdmi *hdmi, u8 val, int offset);
0008     u8 (*read)(struct dw_hdmi *hdmi, int offset);
0009     void (*enable)(struct dw_hdmi *hdmi);
0010     void (*disable)(struct dw_hdmi *hdmi);
0011 };
0012 
0013 struct dw_hdmi_cec_data {
0014     struct dw_hdmi *hdmi;
0015     const struct dw_hdmi_cec_ops *ops;
0016     int irq;
0017 };
0018 
0019 #endif