Searched hist:"5 f908786cf44fcb397cfe0f322ef2f41b0909e2a" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/drivers/soc/qcom/ |
H A D | smem.c | diff 5f908786cf44fcb397cfe0f322ef2f41b0909e2a Tue Aug 01 04:48:07 CDT 2023 Chen Jiahao <chenjiahao16@huawei.com> soc: qcom: smem: Fix incompatible types in comparison
This patch fixes the following sparse error:
drivers/soc/qcom/smem.c:738:30: error: incompatible types in comparison expression (different add ress spaces): drivers/soc/qcom/smem.c:738:30: void * drivers/soc/qcom/smem.c:738:30: void [noderef] __iomem *
In addr_in_range(), "base" is of type void __iomem *, converting void *addr to the same type to fix above sparse error.
Fixes: 20bb6c9de1b7 ("soc: qcom: smem: map only partitions used by local HOST") Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com> Link: https://lore.kernel.org/r/20230801094807.4146779-1-chenjiahao16@huawei.com Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|