Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b72ff64 authored by Alan Cox's avatar Alan Cox Committed by David S. Miller
Browse files

wanmain: comparing array with NULL



gcc really should warn about these !

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c66b9b7d
Loading
Loading
Loading
Loading
+23 −28
Original line number Diff line number Diff line
@@ -602,10 +602,6 @@ static int wanrouter_device_new_if(struct wan_device *wandev,
		 * successfully, add it to the interface list.
		 */

		if (dev->name == NULL) {
			err = -EINVAL;
		} else {

#ifdef WANDEBUG
		printk(KERN_INFO "%s: registering interface %s...\n",
		       wanrouter_modname, dev->name);
@@ -632,7 +628,6 @@ static int wanrouter_device_new_if(struct wan_device *wandev,
			err = 0;	/* done !!! */
			goto out;
		}
		}
		if (wandev->del_if)
			wandev->del_if(wandev, dev);
		free_netdev(dev);