aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
index 857ba0897159..3889486f71fe 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
@@ -74,9 +74,9 @@ static void amdgpu_afmt_calc_cts(uint32_t clock, int *CTS, int *N, int freq)
74 74
75 /* Check that we are in spec (not always possible) */ 75 /* Check that we are in spec (not always possible) */
76 if (n < (128*freq/1500)) 76 if (n < (128*freq/1500))
77 printk(KERN_WARNING "Calculated ACR N value is too small. You may experience audio problems.\n"); 77 pr_warn("Calculated ACR N value is too small. You may experience audio problems.\n");
78 if (n > (128*freq/300)) 78 if (n > (128*freq/300))
79 printk(KERN_WARNING "Calculated ACR N value is too large. You may experience audio problems.\n"); 79 pr_warn("Calculated ACR N value is too large. You may experience audio problems.\n");
80 80
81 *N = n; 81 *N = n;
82 *CTS = cts; 82 *CTS = cts;