diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:30 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-24 16:53:30 -0400 |
commit | d83b8b85cd56a083d30df73f3fd5e4714591b910 (patch) | |
tree | 1fac379e8d909361ecbf934645463a00e706dafc /include/linux | |
parent | 2c9d86438a0104800da2a8ecdc1e27baf38ba6a4 (diff) |
ide: define MAX_HWIFS in <linux/ide.h>
* Now that ide_hwif_t instances are allocated dynamically
the difference between MAX_HWIFS == 2 and MAX_HWIFS == 10
is ~100 bytes (x86-32) so use MAX_HWIFS == 10 on all archs
except these ones that use MAX_HWIFS == 1.
* Define MAX_HWIFS in <linux/ide.h> instead of <asm/ide.h>.
[ Please note that avr32/cris/v850 have no <asm/ide.h>
and alpha/ia64/sh always define CONFIG_IDE_MAX_HWIFS. ]
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ide.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index dbd0aeb3a56d..76fe00b24b51 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -213,6 +213,14 @@ static inline int __ide_default_irq(unsigned long base) | |||
213 | 213 | ||
214 | #include <asm/ide.h> | 214 | #include <asm/ide.h> |
215 | 215 | ||
216 | #ifndef MAX_HWIFS | ||
217 | #if defined(CONFIG_BLACKFIN) || defined(CONFIG_H8300) || defined(CONFIG_XTENSA) | ||
218 | # define MAX_HWIFS 1 | ||
219 | #else | ||
220 | # define MAX_HWIFS 10 | ||
221 | #endif | ||
222 | #endif | ||
223 | |||
216 | #if !defined(MAX_HWIFS) || defined(CONFIG_EMBEDDED) | 224 | #if !defined(MAX_HWIFS) || defined(CONFIG_EMBEDDED) |
217 | #undef MAX_HWIFS | 225 | #undef MAX_HWIFS |
218 | #define MAX_HWIFS CONFIG_IDE_MAX_HWIFS | 226 | #define MAX_HWIFS CONFIG_IDE_MAX_HWIFS |