drm/nouveau/disp: fix cast removes address space of expression warnings
authorruanjinjie <ruanjinjie@huawei.com>
Sat, 24 Sep 2022 09:25:16 +0000 (17:25 +0800)
committerLyude Paul <lyude@redhat.com>
Wed, 12 Oct 2022 22:54:42 +0000 (18:54 -0400)
commit9cf06d6ef7fd08adf51568b704ab7ba6007b6fe8
tree6b48df633debfc6875122ed3554cf1317d0d80ce
parentca0022425b3303786a563f8e40c26164970eb632
drm/nouveau/disp: fix cast removes address space of expression warnings

When build Linux kernel with 'make C=2', encounter the following warnings:

./drivers/gpu/drm/nouveau/dispnv50/disp.c:134:34: warning: cast removes address space '__iomem' of expression
./drivers/gpu/drm/nouveau/dispnv50/disp.c:197:34: warning: cast removes address space '__iomem' of expression

The data type of dmac->_push.mem.object.map.ptr is 'void __iomem *', but
converted to 'u32 *' directly and cause above warnings, now
recover their data types to fix these warnings.

Signed-off-by: ruanjinjie <ruanjinjie@huawei.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220924092516.10007-1-ruanjinjie@huawei.com
drivers/gpu/drm/nouveau/dispnv50/disp.c