diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-08-29 18:58:01 -0700 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-08-30 14:10:08 +0900 |
commit | 497dcf6fc355f0734faf851662b6957386715d24 (patch) | |
tree | 87d3d4ee757feea8ee1a9080a5a503d566a8c674 /arch/arm/mach-shmobile | |
parent | fea7a08acb13524b47711625eebea40a0ede69a0 (diff) | |
download | linux-497dcf6fc355f0734faf851662b6957386715d24.tar.bz2 |
ARM: shmobile: marzen: fixup smsc911x id for regulator
dummy_supplies for smsc911x are registered as "smsc911x".
smsc911x driver needs id = -1
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/board-marzen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/board-marzen.c b/arch/arm/mach-shmobile/board-marzen.c index 3a528cf4366c..fcf5a47f4772 100644 --- a/arch/arm/mach-shmobile/board-marzen.c +++ b/arch/arm/mach-shmobile/board-marzen.c @@ -67,7 +67,7 @@ static struct smsc911x_platform_config smsc911x_platdata = { static struct platform_device eth_device = { .name = "smsc911x", - .id = 0, + .id = -1, .dev = { .platform_data = &smsc911x_platdata, }, |