diff options
author | Daniel Ritz <daniel.ritz-ml@swissonline.ch> | 2005-11-03 15:12:14 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-05 17:41:23 -0500 |
commit | 63e7ebd06402951bc8863ba5b7bc9b9f42044849 (patch) | |
tree | 9265e2ca96c3a6e488060b36187f2f5a005fda2f /drivers/pcmcia/Kconfig | |
parent | 2cff944720332535a24b7eae16cff32055a43048 (diff) |
[PATCH] yenta: make bridge specific init code configurable
Make the bridge specific initialization code config options depending on
CONFIG_EMBEDDED. Config options for TI/EnE, Toshiba, Ricoh and O2Micro are
available. Disabling all of the specific tweaks cuts off more than half
of yenta_socket.ko.
Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/Kconfig')
-rw-r--r-- | drivers/pcmcia/Kconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig index 309eb557f9a3..ea00b1f3cb44 100644 --- a/drivers/pcmcia/Kconfig +++ b/drivers/pcmcia/Kconfig | |||
@@ -116,6 +116,31 @@ config YENTA | |||
116 | 116 | ||
117 | If unsure, say Y. | 117 | If unsure, say Y. |
118 | 118 | ||
119 | config YENTA_O2 | ||
120 | default y | ||
121 | bool "Special initialization for O2Micro bridges" if EMBEDDED | ||
122 | depends on YENTA | ||
123 | |||
124 | config YENTA_RICOH | ||
125 | default y | ||
126 | bool "Special initialization for Ricoh bridges" if EMBEDDED | ||
127 | depends on YENTA | ||
128 | |||
129 | config YENTA_TI | ||
130 | default y | ||
131 | bool "Special initialization for TI and EnE bridges" if EMBEDDED | ||
132 | depends on YENTA | ||
133 | |||
134 | config YENTA_ENE_TUNE | ||
135 | default y | ||
136 | bool "Auto-tune EnE bridges for CB cards" if EMBEDDED | ||
137 | depends on YENTA_TI && CARDBUS | ||
138 | |||
139 | config YENTA_TOSHIBA | ||
140 | default y | ||
141 | bool "Special initialization for Toshiba ToPIC bridges" if EMBEDDED | ||
142 | depends on YENTA | ||
143 | |||
119 | config PD6729 | 144 | config PD6729 |
120 | tristate "Cirrus PD6729 compatible bridge support" | 145 | tristate "Cirrus PD6729 compatible bridge support" |
121 | depends on PCMCIA && PCI | 146 | depends on PCMCIA && PCI |