diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-01-30 17:56:39 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-02-01 16:22:28 +0100 |
commit | b1c01f4df20a6376fe6245644225ff9fe97c5f95 (patch) | |
tree | 9027684bae652a12b79c3ac893d3ba4e59a500cb /drivers | |
parent | 0843e043cf2e5d12a4041efd9c794a213a3ef93b (diff) | |
download | linux-b1c01f4df20a6376fe6245644225ff9fe97c5f95.tar.bz2 |
drm/i915: Pass platform device to LPE audio notifier
This allows the LPE HDMI driver to clean up its global variable
reference.
Also drop to pass the eld pointer because the connection status and
the ELD bytes can be retrieved from the attached pdata.
Acked-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/i915/intel_lpe_audio.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/intel_lpe_audio.c b/drivers/gpu/drm/i915/intel_lpe_audio.c index 68ebf3830433..d3ffe0012692 100644 --- a/drivers/gpu/drm/i915/intel_lpe_audio.c +++ b/drivers/gpu/drm/i915/intel_lpe_audio.c @@ -378,8 +378,7 @@ void intel_lpe_audio_notify(struct drm_i915_private *dev_priv, } if (pdata->notify_audio_lpe) - pdata->notify_audio_lpe( - (eld != NULL) ? &pdata->eld : NULL); + pdata->notify_audio_lpe(dev_priv->lpe_audio.platdev); else pdata->notify_pending = true; |