Commit b89a5218 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Alex Deucher

gpu/drm/radeon: use DIV_ROUND_UP macro to do calculation

Don't open-code DIV_ROUND_UP() kernel macro.
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 062ccc24
...@@ -220,7 +220,7 @@ int r600_fmt_get_nblocksx(u32 format, u32 w) ...@@ -220,7 +220,7 @@ int r600_fmt_get_nblocksx(u32 format, u32 w)
if (bw == 0) if (bw == 0)
return 0; return 0;
return (w + bw - 1) / bw; return DIV_ROUND_UP(w, bw);
} }
int r600_fmt_get_nblocksy(u32 format, u32 h) int r600_fmt_get_nblocksy(u32 format, u32 h)
...@@ -234,7 +234,7 @@ int r600_fmt_get_nblocksy(u32 format, u32 h) ...@@ -234,7 +234,7 @@ int r600_fmt_get_nblocksy(u32 format, u32 h)
if (bh == 0) if (bh == 0)
return 0; return 0;
return (h + bh - 1) / bh; return DIV_ROUND_UP(h, bh);
} }
struct array_mode_checker { struct array_mode_checker {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment