diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-12-07 06:32:20 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-05 18:27:43 -0500 |
commit | 3b27e9421a1433689704fe0a02e926d4ba971121 (patch) | |
tree | c3ca9e3e929da1c48ce5d8e9fa6d0257b5b900f5 /drivers/pcmcia/Kconfig | |
parent | efe3cd105f2a19e72ce9280bb22c7c80752e4314 (diff) |
[PATCH] pcmcia: properly handle static mem, but dynamic io sockets
Some PCMCIA sockets have statically mapped memory windows, but dynamically
mapped IO windows. Using the "nonstatic" socket library is inpractical for
them, as they do neither need a resource database (as we can trust the
kernel resource database on m68k and ppc) nor lots of other features of that
library. Let them get a small "iodyn" socket library (105 lines of code)
instead.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/Kconfig')
-rw-r--r-- | drivers/pcmcia/Kconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig index ea00b1f3cb44..df93df64c9f3 100644 --- a/drivers/pcmcia/Kconfig +++ b/drivers/pcmcia/Kconfig | |||
@@ -182,7 +182,7 @@ config TCIC | |||
182 | config PCMCIA_M8XX | 182 | config PCMCIA_M8XX |
183 | tristate "MPC8xx PCMCIA support" | 183 | tristate "MPC8xx PCMCIA support" |
184 | depends on PCMCIA && PPC && 8xx | 184 | depends on PCMCIA && PPC && 8xx |
185 | select PCCARD_NONSTATIC | 185 | select PCCARD_IODYN |
186 | help | 186 | help |
187 | Say Y here to include support for PowerPC 8xx series PCMCIA | 187 | Say Y here to include support for PowerPC 8xx series PCMCIA |
188 | controller. | 188 | controller. |
@@ -266,6 +266,9 @@ config OMAP_CF | |||
266 | config PCCARD_NONSTATIC | 266 | config PCCARD_NONSTATIC |
267 | tristate | 267 | tristate |
268 | 268 | ||
269 | config PCCARD_IODYN | ||
270 | bool | ||
271 | |||
269 | endif # PCCARD | 272 | endif # PCCARD |
270 | 273 | ||
271 | endmenu | 274 | endmenu |