diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2017-04-27 18:02:25 +0200 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2017-05-03 15:20:32 +0200 |
commit | 265fa2e18f50cc55c0d0517b29bd5cdd5b4f776f (patch) | |
tree | 8e60930d1cf711fca7c696ec0b52cd4ccb97953d /include/drm/intel_lpe_audio.h | |
parent | drm/i915: Replace tmds_clock_speed and link_rate with just ls_clock (diff) | |
download | linux-265fa2e18f50cc55c0d0517b29bd5cdd5b4f776f.tar.xz linux-265fa2e18f50cc55c0d0517b29bd5cdd5b4f776f.zip |
drm/i915: Remove hdmi_connected from LPE audio pdata
We can determine that the pipe was shut down from pipe<0, so there's
no point in duplicating that information as 'hdmi_connected'.
v2: Use pipe<0 instead of port<0 as we'll want to do per-port
PCM devices later
Initialize pipe to -1 to inidicate inactive initial state
Cc: Takashi Iwai <tiwai@suse.de>
Cc: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170427160231.13337-7-ville.syrjala@linux.intel.com
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/drm/intel_lpe_audio.h')
-rw-r--r-- | include/drm/intel_lpe_audio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/drm/intel_lpe_audio.h b/include/drm/intel_lpe_audio.h index 8bf804ce8905..9a5bdf5ad180 100644 --- a/include/drm/intel_lpe_audio.h +++ b/include/drm/intel_lpe_audio.h @@ -33,13 +33,12 @@ struct platform_device; struct intel_hdmi_lpe_audio_eld { int port_id; - int pipe_id; unsigned char eld_data[HDMI_MAX_ELD_BYTES]; }; struct intel_hdmi_lpe_audio_pdata { + int pipe; int ls_clock; - bool hdmi_connected; bool dp_output; struct intel_hdmi_lpe_audio_eld eld; void (*notify_audio_lpe)(struct platform_device *pdev); |