[Bug 71151] i915: connecting VGA1 disables LVDS1 and vice versa

bugzilla-daemon at bugzilla.kernel.org bugzilla-daemon at bugzilla.kernel.org
Tue Feb 25 06:46:19 PST 2014


https://bugzilla.kernel.org/show_bug.cgi?id=71151

--- Comment #2 from Wilhelm Hagemeister <hmr at igh-essen.com> ---
(In reply to Chris Wilson from comment #1)
> Hmm.
> 
> diff --git a/drivers/gpu/drm/i915/intel_sdvo.c


> +       else if (IS_LVDS(intel_sdvo_connector))
> +               ret = intel_sdvo->sdvo_lvds_fixed_mode ? 
> connector_status_connected : ret = connector_status_disconnected;

doesn't compile...

--> drivers/gpu/drm/i915/intel_sdvo.c:1740:78: error: lvalue required as left
operand of assignment

have tried:
else if (IS_LVDS(intel_sdvo_connector))
   ret = intel_sdvo->sdvo_lvds_fixed_mode ? connector_status_connected :
connector_status_disconnected;

doesn't work!

have hard set:

else if (IS_LVDS(intel_sdvo_connector))
    ret = connector_status_connected;


does work! ... ?

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the intel-gfx-bugs mailing list