]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/radeon/kms: Hide debugging message
authorJean Delvare <jdelvare@suse.de>
Wed, 30 Nov 2011 16:26:36 +0000 (17:26 +0100)
committerDave Airlie <airlied@redhat.com>
Thu, 1 Dec 2011 09:57:03 +0000 (09:57 +0000)
Use the proper macro to issue the debugging message in
radeon_atif_call(). Otherwise we spam the log of many systems with a
message which looks like an error message of unknown origin, and could
thus confuse the user. Commit dc77de12dde95c8da39e4c417eb70c7d445cf84b
was a first step in this direction, but was not sufficient IMHO.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/radeon/radeon_acpi.c

index 3f6636bb2d7f874abf0208cff67010f82c2f4e75..c039e5a6bf134e2cdb85f18548474f8dac49bda1 100644 (file)
@@ -35,7 +35,8 @@ static int radeon_atif_call(acpi_handle handle)
 
        /* Fail only if calling the method fails and ATIF is supported */
        if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
-               printk(KERN_DEBUG "failed to evaluate ATIF got %s\n", acpi_format_exception(status));
+               DRM_DEBUG_DRIVER("failed to evaluate ATIF got %s\n",
+                                acpi_format_exception(status));
                kfree(buffer.pointer);
                return 1;
        }