Commit 40f1ebd4 authored by Vaishali Thakkar's avatar Vaishali Thakkar Committed by Scott Wood

soc/fsl/qe: Use resource_size

Use the function resource_size instead of explicit computation.

Problem found using Coccinelle.
Signed-off-by: default avatarVaishali Thakkar <vaishali.thakkar@oracle.com>
Signed-off-by: default avatarScott Wood <oss@buserror.net>
parent f1a55ce0
...@@ -167,7 +167,7 @@ int ucc_of_parse_tdm(struct device_node *np, struct ucc_tdm *utdm, ...@@ -167,7 +167,7 @@ int ucc_of_parse_tdm(struct device_node *np, struct ucc_tdm *utdm,
} }
if (siram_init_flag == 0) { if (siram_init_flag == 0) {
memset_io(utdm->siram, 0, res->end - res->start + 1); memset_io(utdm->siram, 0, resource_size(res));
siram_init_flag = 1; siram_init_flag = 1;
} }
......
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