diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-06-24 12:32:36 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-07-01 05:14:42 -0400 |
commit | 0f4f7b57954dda93b10e3b46594b0bfe24bba22c (patch) | |
tree | 598b16edfd36f58a4b5026e8c67c73bf77e775dd | |
parent | 1625e7e549c50fb57a1e1ab1cb0f5735c84c9029 (diff) |
drm/i915: tune down DIDL warning about too many outputs
Nothing the user (nor we) really can do about this, but upsets a nice
quiet boot.
Note that this happens mostly on SDVs where OEMs obviously haven't had
a chance yet to appropriately trim the output list.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65988
Reviewed-by: Damien Lespiau <damien.lespiau@intel.com>
[danvet: Amend commit message a bit to clarify a question from Paulo.]
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/i915/intel_opregion.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c index 79be7cfd3152..cfb8fb68f09c 100644 --- a/drivers/gpu/drm/i915/intel_opregion.c +++ b/drivers/gpu/drm/i915/intel_opregion.c | |||
@@ -311,8 +311,8 @@ static void intel_didl_outputs(struct drm_device *dev) | |||
311 | 311 | ||
312 | list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) { | 312 | list_for_each_entry(acpi_cdev, &acpi_video_bus->children, node) { |
313 | if (i >= 8) { | 313 | if (i >= 8) { |
314 | dev_printk(KERN_ERR, &dev->pdev->dev, | 314 | dev_dbg(&dev->pdev->dev, |
315 | "More than 8 outputs detected via ACPI\n"); | 315 | "More than 8 outputs detected via ACPI\n"); |
316 | return; | 316 | return; |
317 | } | 317 | } |
318 | status = | 318 | status = |
@@ -338,8 +338,8 @@ blind_set: | |||
338 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { | 338 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
339 | int output_type = ACPI_OTHER_OUTPUT; | 339 | int output_type = ACPI_OTHER_OUTPUT; |
340 | if (i >= 8) { | 340 | if (i >= 8) { |
341 | dev_printk(KERN_ERR, &dev->pdev->dev, | 341 | dev_dbg(&dev->pdev->dev, |
342 | "More than 8 outputs in connector list\n"); | 342 | "More than 8 outputs in connector list\n"); |
343 | return; | 343 | return; |
344 | } | 344 | } |
345 | switch (connector->connector_type) { | 345 | switch (connector->connector_type) { |