]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
powerpc/maple: Fix comparing pointer to 0
authorChen Zhou <chenzhou10@huawei.com>
Tue, 21 Jan 2020 01:31:53 +0000 (09:31 +0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Sat, 25 Jan 2020 13:11:35 +0000 (00:11 +1100)
Fixes coccicheck warning:
  arch/powerpc/platforms/maple/setup.c:232:15-16:
WARNING comparing pointer to 0

Compare pointer-typed values to NULL rather than 0.

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200121013153.9937-1-chenzhou10@huawei.com
arch/powerpc/platforms/maple/setup.c

index 9cd6f3e1000b324210c5f8156dcf523c46c7be81..bd5f9b1bc1a1e25386913ef0c4bc23573a3bfd83 100644 (file)
@@ -232,7 +232,7 @@ static void __init maple_init_IRQ(void)
        root = of_find_node_by_path("/");
        naddr = of_n_addr_cells(root);
        opprop = of_get_property(root, "platform-open-pic", &opplen);
-       if (opprop != 0) {
+       if (opprop) {
                openpic_addr = of_read_number(opprop, naddr);
                has_isus = (opplen > naddr);
                printk(KERN_DEBUG "OpenPIC addr: %lx, has ISUs: %d\n",