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

Commit 4d14a634 authored by Jeremy Linton's avatar Jeremy Linton Committed by David S. Miller
Browse files

smsc911x: Remove dev==NULL check.



The dev==NULL check in smsc911x_probe_config is useless
and isn't providing any additional protection. If a fwnode
doesn't exist then an appropriate error should be returned
by device_get_phy_mode() covering the original case
of a missing of/fwnode.

Signed-off-by: default avatarJeremy Linton <jeremy.linton@arm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2f710a3a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -2370,9 +2370,6 @@ static int smsc911x_probe_config(struct smsc911x_platform_config *config,
	int phy_interface;
	u32 width = 0;

	if (!dev)
		return -ENODEV;

	phy_interface = device_get_phy_mode(dev);
	if (phy_interface < 0)
		return phy_interface;