diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-24 18:22:41 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2009-03-24 18:22:41 -0400 |
commit | 8b803bd184e3f6892284d4b50801b9ec85cd9b96 (patch) | |
tree | c7727ccfeba7e187aeca3ccdc8049269d368e564 /include/linux/ide.h | |
parent | 7ed5b157d9dff55bf477b4c8b4708d5d45476677 (diff) |
ide: sanitize ACPI initialization
* ide_acpi_init() -> ide_acpi_init_port()
* ide_acpi_blacklist() -> ide_acpi_init()
* Call ide_acpi_init() only once (do it during IDE core
initialization) and cleanup the function accordingly.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 7ed395b4b891..6bb104f4e341 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -1484,17 +1484,19 @@ static inline void ide_release_dma_engine(ide_hwif_t *hwif) { ; } | |||
1484 | #endif /* CONFIG_BLK_DEV_IDEDMA */ | 1484 | #endif /* CONFIG_BLK_DEV_IDEDMA */ |
1485 | 1485 | ||
1486 | #ifdef CONFIG_BLK_DEV_IDEACPI | 1486 | #ifdef CONFIG_BLK_DEV_IDEACPI |
1487 | int ide_acpi_init(void); | ||
1487 | extern int ide_acpi_exec_tfs(ide_drive_t *drive); | 1488 | extern int ide_acpi_exec_tfs(ide_drive_t *drive); |
1488 | extern void ide_acpi_get_timing(ide_hwif_t *hwif); | 1489 | extern void ide_acpi_get_timing(ide_hwif_t *hwif); |
1489 | extern void ide_acpi_push_timing(ide_hwif_t *hwif); | 1490 | extern void ide_acpi_push_timing(ide_hwif_t *hwif); |
1490 | extern void ide_acpi_init(ide_hwif_t *hwif); | 1491 | void ide_acpi_init_port(ide_hwif_t *); |
1491 | void ide_acpi_port_init_devices(ide_hwif_t *); | 1492 | void ide_acpi_port_init_devices(ide_hwif_t *); |
1492 | extern void ide_acpi_set_state(ide_hwif_t *hwif, int on); | 1493 | extern void ide_acpi_set_state(ide_hwif_t *hwif, int on); |
1493 | #else | 1494 | #else |
1495 | static inline int ide_acpi_init(void) { return 0; } | ||
1494 | static inline int ide_acpi_exec_tfs(ide_drive_t *drive) { return 0; } | 1496 | static inline int ide_acpi_exec_tfs(ide_drive_t *drive) { return 0; } |
1495 | static inline void ide_acpi_get_timing(ide_hwif_t *hwif) { ; } | 1497 | static inline void ide_acpi_get_timing(ide_hwif_t *hwif) { ; } |
1496 | static inline void ide_acpi_push_timing(ide_hwif_t *hwif) { ; } | 1498 | static inline void ide_acpi_push_timing(ide_hwif_t *hwif) { ; } |
1497 | static inline void ide_acpi_init(ide_hwif_t *hwif) { ; } | 1499 | static inline void ide_acpi_init_port(ide_hwif_t *hwif) { ; } |
1498 | static inline void ide_acpi_port_init_devices(ide_hwif_t *hwif) { ; } | 1500 | static inline void ide_acpi_port_init_devices(ide_hwif_t *hwif) { ; } |
1499 | static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {} | 1501 | static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {} |
1500 | #endif | 1502 | #endif |