[PATCH] scx200: s/0/NULL/ in pointer context

From: Alexey Dobriyan
Date: Sun Jan 09 2005 - 04:04:06 EST


Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxx>

Index: linux-2.6.10-bk11-warnings/arch/i386/kernel/scx200.c
===================================================================
--- linux-2.6.10-bk11-warnings/arch/i386/kernel/scx200.c (revision 3)
+++ linux-2.6.10-bk11-warnings/arch/i386/kernel/scx200.c (revision 4)
@@ -48,7 +48,7 @@
base = pci_resource_start(pdev, 0);
printk(KERN_INFO NAME ": GPIO base 0x%x\n", base);

- if (request_region(base, SCx200_GPIO_SIZE, "NatSemi SCx200 GPIO") == 0) {
+ if (request_region(base, SCx200_GPIO_SIZE, "NatSemi SCx200 GPIO") == NULL) {
printk(KERN_ERR NAME ": can't allocate I/O for GPIOs\n");
return -EBUSY;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/