diff options
author | Olof Johansson <olof@lixom.net> | 2008-01-26 14:13:05 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:05 -0500 |
commit | b0d5bc27ce995adaafbc114b92fa76815025c94e (patch) | |
tree | ee3cd3336be0cbb32b9b823bac0a051c0e531c04 /include/linux/ide.h | |
parent | 151575e4644f917d3a9f83c777ac3543284954f8 (diff) |
ide: Fix build break caused by "ide: remove ideprobe_init()"
Fix build break of powerpc holly_defconfig:
In file included from arch/powerpc/platforms/embedded6xx/holly.c:24:
include/linux/ide.h:1206: error: 'CONFIG_IDE_MAX_HWIFS' undeclared here (not in a function)
There's no need to have a sized array in the prototype, might as well
turn it into a pointer.
It could probably be argued that large parts of the include file can be
covered under #ifdef CONFIG_IDE, but that's a larger undertaking.
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index d7c0f9a8bd9e..ce9b16f38c08 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -1201,7 +1201,7 @@ void ide_unregister_region(struct gendisk *); | |||
1201 | 1201 | ||
1202 | void ide_undecoded_slave(ide_drive_t *); | 1202 | void ide_undecoded_slave(ide_drive_t *); |
1203 | 1203 | ||
1204 | int ide_device_add_all(u8 idx[MAX_HWIFS]); | 1204 | int ide_device_add_all(u8 *idx); |
1205 | int ide_device_add(u8 idx[4]); | 1205 | int ide_device_add(u8 idx[4]); |
1206 | 1206 | ||
1207 | static inline void *ide_get_hwifdata (ide_hwif_t * hwif) | 1207 | static inline void *ide_get_hwifdata (ide_hwif_t * hwif) |