Commit 6fed9592 authored by Sachin Kamat's avatar Sachin Kamat Committed by David S. Miller

net/smsc911x: Use NULL instead of integer for pointer

Silences the following sparse warning:
drivers/net/ethernet/smsc/smsc911x.c:2145:30:
warning: Using plain integer as NULL pointer
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 119c331f
...@@ -2115,7 +2115,7 @@ static int smsc911x_init(struct net_device *dev) ...@@ -2115,7 +2115,7 @@ static int smsc911x_init(struct net_device *dev)
spin_lock_init(&pdata->dev_lock); spin_lock_init(&pdata->dev_lock);
spin_lock_init(&pdata->mac_lock); spin_lock_init(&pdata->mac_lock);
if (pdata->ioaddr == 0) { if (pdata->ioaddr == NULL) {
SMSC_WARN(pdata, probe, "pdata->ioaddr: 0x00000000"); SMSC_WARN(pdata, probe, "pdata->ioaddr: 0x00000000");
return -ENODEV; return -ENODEV;
} }
......
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