Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/arise: donot assigning value of variable of type to itself
Fix follow compile errors with clang-19: drivers/gpu/drm/arise/linux/os_interface.c:1995:10: error: explicitly assigning value of variable of type 'unsigned long' to itself [-Werror,-Wself-assign] 1995 | base = base; | ~~~~ ^ ~~~~ drivers/gpu/drm/arise/linux/os_interface.c:1996:10: error: explicitly assigning value of variable of type 'unsigned long' to itself [-Werror,-Wself-assign] 1996 | size = size; | ~~~~ ^ ~~~~ 2 errors generated. Signed-off-by: WangYuli <[email protected]>
- Loading branch information