OSDN Git Service

drm/amdgpu/display: Use u64 divide macro for round up division
authorMikita Lipski <mikita.lipski@amd.com>
Mon, 13 Jan 2020 13:15:19 +0000 (08:15 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 14 Jan 2020 15:16:43 +0000 (10:16 -0500)
[why]
Fix compilation warnings on i386 architecture:
undefined reference to `__udivdi3'
[how]
Switch DIV_ROUND_UP to DIV64_U64_ROUND_UP

Reported-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Mikita Lipski <mikita.lipski@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c

index 52fb207..96b391e 100644 (file)
@@ -534,7 +534,7 @@ static int kbps_to_peak_pbn(int kbps)
 
        peak_kbps *= 1006;
        peak_kbps = div_u64(peak_kbps, 1000);
-       return (int) DIV_ROUND_UP(peak_kbps * 64, (54 * 8 * 1000));
+       return (int) DIV64_U64_ROUND_UP(peak_kbps * 64, (54 * 8 * 1000));
 }
 
 static void set_dsc_configs_from_fairness_vars(struct dsc_mst_fairness_params *params,