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

Commit f0df8754 authored by Fabio Estevam's avatar Fabio Estevam Committed by Sascha Hauer
Browse files

ARM: 3ds_debugboard: Fix smsc911x driver probe



Fix smsc911x id field in order to fix smsc911x driver probe error:

smsc911x smsc911x.0: Failed to get supply 'vdd33a': -517
smsc911x smsc911x.0: (unregistered net_device): couldn't get regulators -517
platform smsc911x.0: Driver smsc911x requests probe deferral

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent 31e1a4e8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ static struct smsc911x_platform_config smsc911x_config = {

static struct platform_device smsc_lan9217_device = {
	.name = "smsc911x",
	.id = 0,
	.id = -1,
	.dev = {
		.platform_data = &smsc911x_config,
	},