Messages in this thread Patch in this message |  | | | From | Alexey Dobriyan <> | | Subject | [PATCH] scx200: s/0/NULL/ in pointer context | | Date | Sun, 9 Jan 2005 11:52:50 +0200 |
| |
Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru>
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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |