diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-04-01 07:16:49 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-04-09 12:04:09 -0400 |
commit | bc0daf488fc4a255733ad19fe0de995f4a4d745f (patch) | |
tree | 71dd45a10024cb71fdf58f446722dedd9e096ba2 /drivers/gpu/drm/i915/intel_lvds.c | |
parent | 9d2f41fa0fd9a3e086d3c072b0113b6b9ebae06b (diff) |
drm/i915: make quirks more verbose
And add informational dmesg output where it does not yet exist.
In case a quirk matches too much, this information is crucial for
debugging such a bug report.
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_lvds.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_lvds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index 4f92a11fc29a..a96d9a1399f0 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c | |||
@@ -474,7 +474,7 @@ static int intel_lvds_get_modes(struct drm_connector *connector) | |||
474 | 474 | ||
475 | static int intel_no_modeset_on_lid_dmi_callback(const struct dmi_system_id *id) | 475 | static int intel_no_modeset_on_lid_dmi_callback(const struct dmi_system_id *id) |
476 | { | 476 | { |
477 | DRM_DEBUG_KMS("Skipping forced modeset for %s\n", id->ident); | 477 | DRM_INFO("Skipping forced modeset for %s\n", id->ident); |
478 | return 1; | 478 | return 1; |
479 | } | 479 | } |
480 | 480 | ||
@@ -622,7 +622,7 @@ static const struct drm_encoder_funcs intel_lvds_enc_funcs = { | |||
622 | 622 | ||
623 | static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id) | 623 | static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id) |
624 | { | 624 | { |
625 | DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident); | 625 | DRM_INFO("Skipping LVDS initialization for %s\n", id->ident); |
626 | return 1; | 626 | return 1; |
627 | } | 627 | } |
628 | 628 | ||