diff options
author | Michael Buesch <mb@bu3sch.de> | 2010-02-03 18:24:35 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-02-03 16:55:20 -0500 |
commit | 391ae22ae5726d2a8cebfa62879635c54a349642 (patch) | |
tree | 090730f2457712f085cc51d2e3c540072e183ea2 | |
parent | b6c3f5be7c6ac3375f44de4545c1ffe216b34022 (diff) | |
download | linux-3.10-391ae22ae5726d2a8cebfa62879635c54a349642.tar.gz linux-3.10-391ae22ae5726d2a8cebfa62879635c54a349642.tar.bz2 linux-3.10-391ae22ae5726d2a8cebfa62879635c54a349642.zip |
ssb: Fix CONFIG_SSB_SDIOHOST typo
This fixes a CONFIG_SSB_SDIOHOST typo.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Reported-by: Christoph Egger <siccegge@stud.informatik.uni-erlangen.de>
Tested-By: Albert Herranz <albert_herranz@yahoo.es>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/ssb/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index 5681ebed9c6..03dfd27c4bf 100644 --- a/drivers/ssb/main.c +++ b/drivers/ssb/main.c @@ -494,8 +494,7 @@ static int ssb_devices_register(struct ssb_bus *bus) #endif break; case SSB_BUSTYPE_SDIO: -#ifdef CONFIG_SSB_SDIO - sdev->irq = bus->host_sdio->dev.irq; +#ifdef CONFIG_SSB_SDIOHOST dev->parent = &bus->host_sdio->dev; #endif break; |