[-next] alpha: Fix warning comparing pointer to 0
Commit Message
./arch/alpha/kernel/smp.c:271:39-40: WARNING comparing pointer to 0
Avoid pointer type value compared with 0 to make code clear.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3979
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
arch/alpha/kernel/smp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -268,7 +268,7 @@ recv_secondary_console_msg(void)
memcpy(cp2, cp1, cnt);
cp2[cnt] = '\0';
- while ((cp2 = strchr(cp2, '\r')) != 0) {
+ while ((cp2 = strchr(cp2, '\r'))) {
*cp2 = ' ';
if (cp2[1] == '\n')
cp2[1] = ' ';