Commit dec1a998 authored by Adrian Bunk's avatar Adrian Bunk Committed by Jean Delvare

i2c/scx200_acb: Don't use 0 as NULL pointer

Don't use 0 as NULL pointer.

Spotted by sparse.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent afc13b76
...@@ -527,7 +527,7 @@ static int __init scx200_create_isa(const char *text, unsigned long base, ...@@ -527,7 +527,7 @@ static int __init scx200_create_isa(const char *text, unsigned long base,
if (iface == NULL) if (iface == NULL)
return -ENOMEM; return -ENOMEM;
if (request_region(base, 8, iface->adapter.name) == 0) { if (!request_region(base, 8, iface->adapter.name)) {
printk(KERN_ERR NAME ": can't allocate io 0x%lx-0x%lx\n", printk(KERN_ERR NAME ": can't allocate io 0x%lx-0x%lx\n",
base, base + 8 - 1); base, base + 8 - 1);
rc = -EBUSY; rc = -EBUSY;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment