mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 03:59:40 +02:00
drm/i915/lspcon: Remove unused force change mode parameter
All callers asked for a forced change but the function ignored this parameter. It doesn't seem to be necessary to force the change in any case so let's just remove the parameter. Cc: Shashank Sharma <shashank.sharma@intel.com> Signed-off-by: Imre Deak <imre.deak@intel.com> Reviewed-by: Shashank Sharma <shashank.sharma@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1479755707-29596-5-git-send-email-imre.deak@intel.com
This commit is contained in:
parent
357c0ae919
commit
9024880046
|
|
@ -87,7 +87,7 @@ static enum drm_lspcon_mode lspcon_wait_mode(struct intel_lspcon *lspcon,
|
|||
}
|
||||
|
||||
static int lspcon_change_mode(struct intel_lspcon *lspcon,
|
||||
enum drm_lspcon_mode mode, bool force)
|
||||
enum drm_lspcon_mode mode)
|
||||
{
|
||||
int err;
|
||||
enum drm_lspcon_mode current_mode;
|
||||
|
|
@ -202,7 +202,7 @@ void lspcon_resume(struct intel_lspcon *lspcon)
|
|||
if (lspcon_wait_mode(lspcon, expected_mode) == DRM_LSPCON_MODE_PCON)
|
||||
return;
|
||||
|
||||
if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON, true))
|
||||
if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON))
|
||||
DRM_ERROR("LSPCON resume failed\n");
|
||||
else
|
||||
DRM_DEBUG_KMS("LSPCON resume success\n");
|
||||
|
|
@ -239,8 +239,7 @@ bool lspcon_init(struct intel_digital_port *intel_dig_port)
|
|||
* 2.0 sinks.
|
||||
*/
|
||||
if (lspcon->active && lspcon->mode != DRM_LSPCON_MODE_PCON) {
|
||||
if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON,
|
||||
true) < 0) {
|
||||
if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON) < 0) {
|
||||
DRM_ERROR("LSPCON mode change to PCON failed\n");
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user