diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2017-03-31 21:24:28 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-03-31 21:24:28 -0700 |
| commit | 93159d1297b3da40f2858a03267498d725122bfe (patch) | |
| tree | 8abf7eca1b98d415fbcdd89c61f2f420cac415fc /include/linux | |
| parent | dff944c7b6616a4ba18053a74e2ab33b555dcd07 (diff) | |
| parent | d679cf981bd35f67b38d82e03507e2c869d14842 (diff) | |
Merge "msm: mdss: make hpd call asynchronous for HDMI in certain cases"
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/msm_ext_display.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/msm_ext_display.h b/include/linux/msm_ext_display.h index d9831d7cbb4e..fc53e861eba4 100644 --- a/include/linux/msm_ext_display.h +++ b/include/linux/msm_ext_display.h @@ -26,9 +26,13 @@ * interface: * MSM_EXT_DISP_HPD_AUDIO: audio will be routed to external display * MSM_EXT_DISP_HPD_VIDEO: video will be routed to external display + * MSM_EXT_DISP_HPD_ASYNC_AUDIO: don't wait audio notification once wake it up + * MSM_EXT_DISP_HPD_ASYNC_VIDEO: don't wait video notification once wake it up */ #define MSM_EXT_DISP_HPD_AUDIO BIT(0) #define MSM_EXT_DISP_HPD_VIDEO BIT(1) +#define MSM_EXT_DISP_HPD_ASYNC_AUDIO BIT(2) +#define MSM_EXT_DISP_HPD_ASYNC_VIDEO BIT(3) /** * struct ext_disp_cable_notify - cable notify handler structure |
