diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-08-04 09:09:30 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-08-05 18:36:00 -0400 |
commit | 54bf67dee9551f7fd45540a9dec3e5144323c877 (patch) | |
tree | 31cd274919dc4c3c9a112f2fa708e059da792b18 | |
parent | 147cad0936f3c59ec5678fe47319e44e3ea44d87 (diff) |
drm/nouveau: reduce severity of some "error" messages
There's some known configurations where the lack of these tables/scripts
is perfectly normal, reduce visibilty of complaint messages to debug.
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_bios.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c index 8f1f16276f03..a8aef936d706 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c | |||
@@ -4561,7 +4561,7 @@ nouveau_bios_run_display_table(struct drm_device *dev, struct dcb_entry *dcbent, | |||
4561 | bios->display.script_table_ptr, | 4561 | bios->display.script_table_ptr, |
4562 | table[2], table[3], table[0] >= 0x21); | 4562 | table[2], table[3], table[0] >= 0x21); |
4563 | if (!otable) { | 4563 | if (!otable) { |
4564 | NV_ERROR(dev, "Couldn't find matching output script table\n"); | 4564 | NV_DEBUG_KMS(dev, "failed to match any output table\n"); |
4565 | return 1; | 4565 | return 1; |
4566 | } | 4566 | } |
4567 | 4567 | ||
@@ -4618,7 +4618,7 @@ nouveau_bios_run_display_table(struct drm_device *dev, struct dcb_entry *dcbent, | |||
4618 | if (script) | 4618 | if (script) |
4619 | script = clkcmptable(bios, script, pxclk); | 4619 | script = clkcmptable(bios, script, pxclk); |
4620 | if (!script) { | 4620 | if (!script) { |
4621 | NV_ERROR(dev, "clock script 0 not found\n"); | 4621 | NV_DEBUG_KMS(dev, "clock script 0 not found\n"); |
4622 | return 1; | 4622 | return 1; |
4623 | } | 4623 | } |
4624 | 4624 | ||