MIPS: ops-emma2rh: Drop nonsensical db_assert
authorPaul Burton <paul.burton@imgtec.com>
Mon, 13 Jul 2015 16:14:21 +0000 (17:14 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 26 Aug 2015 13:23:35 +0000 (15:23 +0200)
The db_assert call checks whether the bus_num pointer is non-NULL, but
does so after said pointer has been dereferenced by the assignment on
the previous line. Thus the check is pointless & likely to have been
optimised out by the compiler anyway. The check_args function is static
& only ever called from the local file with bus_num being a pointer to
an on-stack variable, so the check seems somewhat overzealous anyway.
Simply remove it.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/10692/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/pci/ops-emma2rh.c

index 710aef5c070e839539a309b88fab97735316c501..2dc97c45685e8b2889b15814032a3e8b6b6f7cc0 100644 (file)
@@ -25,7 +25,6 @@
 #include <linux/types.h>
 
 #include <asm/addrspace.h>
-#include <asm/debug.h>
 
 #include <asm/emma/emma2rh.h>
 
 static int check_args(struct pci_bus *bus, u32 devfn, u32 * bus_num)
 {
        /* check if the bus is top-level */
-       if (bus->parent != NULL) {
+       if (bus->parent != NULL)
                *bus_num = bus->number;
-               db_assert(bus_num != NULL);
-       } else
+       else
                *bus_num = 0;
 
        if (*bus_num == 0) {