aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-08-03 21:16:56 -0400
committerDave Airlie <airlied@redhat.com>2010-08-03 21:16:56 -0400
commitdc77de12dde95c8da39e4c417eb70c7d445cf84b (patch)
tree994f449e0a0a80076e5dd94c559d365b0bb288c7 /drivers/gpu/drm/radeon
parent5b1714d386a2f0c0d270e3abe1ac39ad1b0ba010 (diff)
drm/radeon: tone down overchatty acpi debug messages.
On non laptop systems we'll see these the whole time, so make them less important. Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r--drivers/gpu/drm/radeon/radeon_acpi.c2
-rw-r--r--drivers/gpu/drm/radeon/radeon_kms.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_acpi.c b/drivers/gpu/drm/radeon/radeon_acpi.c
index e366434035cb..3f6636bb2d7f 100644
--- a/drivers/gpu/drm/radeon/radeon_acpi.c
+++ b/drivers/gpu/drm/radeon/radeon_acpi.c
@@ -35,7 +35,7 @@ static int radeon_atif_call(acpi_handle handle)
35 35
36 /* Fail only if calling the method fails and ATIF is supported */ 36 /* Fail only if calling the method fails and ATIF is supported */
37 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { 37 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
38 printk(KERN_INFO "failed to evaluate ATIF got %s\n", acpi_format_exception(status)); 38 printk(KERN_DEBUG "failed to evaluate ATIF got %s\n", acpi_format_exception(status));
39 kfree(buffer.pointer); 39 kfree(buffer.pointer);
40 return 1; 40 return 1;
41 } 41 }
diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b/drivers/gpu/drm/radeon/radeon_kms.c
index e5b705427389..ddcd3b13f151 100644
--- a/drivers/gpu/drm/radeon/radeon_kms.c
+++ b/drivers/gpu/drm/radeon/radeon_kms.c
@@ -81,7 +81,7 @@ int radeon_driver_load_kms(struct drm_device *dev, unsigned long flags)
81 /* Call ACPI methods */ 81 /* Call ACPI methods */
82 acpi_status = radeon_acpi_init(rdev); 82 acpi_status = radeon_acpi_init(rdev);
83 if (acpi_status) 83 if (acpi_status)
84 dev_err(&dev->pdev->dev, "Error during ACPI methods call\n"); 84 dev_dbg(&dev->pdev->dev, "Error during ACPI methods call\n");
85 85
86 /* Again modeset_init should fail only on fatal error 86 /* Again modeset_init should fail only on fatal error
87 * otherwise it should provide enough functionalities 87 * otherwise it should provide enough functionalities