diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-12-21 07:30:07 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-12-21 07:30:06 -0800 |
| commit | b728b32df366f512c7f7b87c8a75708d5902ac74 (patch) | |
| tree | 4f0756cc746ab9cacedd3bf52409c80727636753 /include | |
| parent | 8d9d44abdd65eca8f9036a6c1a9cc8f3508faa7c (diff) | |
| parent | 1bd7966d14bf125a8d53dd53229ed2c8dda174e5 (diff) | |
Merge "msm: mdss: fix handling of audio for DVI sinks"
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/msm_ext_display.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/linux/msm_ext_display.h b/include/linux/msm_ext_display.h index 59ba776b5f9b..b3a7e4ad722a 100644 --- a/include/linux/msm_ext_display.h +++ b/include/linux/msm_ext_display.h @@ -22,6 +22,15 @@ #define AUDIO_ACK_CONNECT BIT(0) /** + * Flags to be used with the HPD operation of the external display + * interface: + * MSM_EXT_DISP_HPD_NO_AUDIO: audio will not be routed to external display + * MSM_EXT_DISP_HPD_NO_VIDEO: video will not be routed to external display + */ +#define MSM_EXT_DISP_HPD_NO_AUDIO BIT(0) +#define MSM_EXT_DISP_HPD_NO_VIDEO BIT(1) + +/** * struct ext_disp_cable_notify - cable notify handler structure * @link: a link for the linked list * @status: current status of HDMI/DP cable connection @@ -87,7 +96,8 @@ enum msm_ext_disp_power_state { struct msm_ext_disp_intf_ops { int (*hpd)(struct platform_device *pdev, enum msm_ext_disp_type type, - enum msm_ext_disp_cable_state state); + enum msm_ext_disp_cable_state state, + u32 flags); int (*notify)(struct platform_device *pdev, enum msm_ext_disp_cable_state state); int (*ack)(struct platform_device *pdev, |
