diff options
| author | 2018-10-04 12:11:28 -0400 | |
|---|---|---|
| committer | 2018-11-05 14:20:50 -0500 | |
| commit | 9f4f9fddc00c1aae7ec7abe0ddfddea78a9be7ce (patch) | |
| tree | d562f25d724af8611e9e70021116911b1e213195 /drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h | |
| parent | drm/amd/display: dc 3.2.02 (diff) | |
| download | linux-dev-9f4f9fddc00c1aae7ec7abe0ddfddea78a9be7ce.tar.xz linux-dev-9f4f9fddc00c1aae7ec7abe0ddfddea78a9be7ce.zip | |
drm/amd/display: explicit uint64_t casting
explicitly cast uint64_t in div64_u64_rem()
Signed-off-by: vikrant mhaske <vikrant.mhaske@amd.com>
Signed-off-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Reviewed-by: Charlene Liu <Charlene.Liu@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h b/drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h index 39ee8eba3c31..d1656c9d50df 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h +++ b/drivers/gpu/drm/amd/display/dc/inc/bw_fixed.h @@ -126,7 +126,7 @@ static inline struct bw_fixed bw_div(const struct bw_fixed arg1, const struct bw static inline struct bw_fixed bw_mod(const struct bw_fixed arg1, const struct bw_fixed arg2) { struct bw_fixed res; - div64_u64_rem(arg1.value, arg2.value, &res.value); + div64_u64_rem(arg1.value, arg2.value, (uint64_t *)&res.value); return res; } |
