diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-10-15 11:23:21 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-10-16 21:04:11 -0400 |
commit | 9be4bfb974b37410466db605abe3402236167e05 (patch) | |
tree | b9b82c25455b6e2d59ec5742e0c4acd0cb6133d7 /drivers/ssb | |
parent | 7007d00caca268e1ba2bcaa6bed4a6456a96884b (diff) |
[PATCH] ssb: fix build failure
fix build failure if PCMCIA=m but SSB=y:
drivers/built-in.o: In function `ssb_pcmcia_switch_coreidx':
: undefined reference to `pcmcia_access_configuration_register'
(fix symmetric bug for PCI too.)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/ssb')
-rw-r--r-- | drivers/ssb/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ssb/Kconfig b/drivers/ssb/Kconfig index b4a5e5e9d9fc..d976660cb7f0 100644 --- a/drivers/ssb/Kconfig +++ b/drivers/ssb/Kconfig | |||
@@ -22,7 +22,7 @@ config SSB | |||
22 | 22 | ||
23 | config SSB_PCIHOST_POSSIBLE | 23 | config SSB_PCIHOST_POSSIBLE |
24 | bool | 24 | bool |
25 | depends on SSB && PCI | 25 | depends on SSB && (PCI = y || PCI = SSB) |
26 | default y | 26 | default y |
27 | 27 | ||
28 | config SSB_PCIHOST | 28 | config SSB_PCIHOST |
@@ -37,7 +37,7 @@ config SSB_PCIHOST | |||
37 | 37 | ||
38 | config SSB_PCMCIAHOST_POSSIBLE | 38 | config SSB_PCMCIAHOST_POSSIBLE |
39 | bool | 39 | bool |
40 | depends on SSB && PCMCIA && EXPERIMENTAL | 40 | depends on SSB && (PCMCIA = y || PCMCIA = SSB) && EXPERIMENTAL |
41 | default y | 41 | default y |
42 | 42 | ||
43 | config SSB_PCMCIAHOST | 43 | config SSB_PCMCIAHOST |