diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-02 19:56:41 +0100 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-02 19:56:41 +0100 |
commit | decdc3f0d664c87761fa1c90733a840b3ca4eccb (patch) | |
tree | 35b02cda569fffabde2f8b119a003cc59ca2e2d6 /drivers | |
parent | d5bc6592df85dbbb300e0d62af89645602c97551 (diff) | |
download | linux-3.10-decdc3f0d664c87761fa1c90733a840b3ca4eccb.tar.gz linux-3.10-decdc3f0d664c87761fa1c90733a840b3ca4eccb.tar.bz2 linux-3.10-decdc3f0d664c87761fa1c90733a840b3ca4eccb.zip |
ide: move ide_acpi_init() call to ide_device_add_all()
There should be no functionality changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ide/ide-probe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index 91c352c8272..cab06ac9522 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c @@ -1260,7 +1260,6 @@ static int hwif_init(ide_hwif_t *hwif) done: blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS, THIS_MODULE, ata_probe, ata_lock, hwif); - ide_acpi_init(hwif); return 1; out: @@ -1429,6 +1428,8 @@ int ide_device_add_all(u8 *idx, const struct ide_port_info *d) rc = -1; continue; } + + ide_acpi_init(hwif); } for (i = 0; i < MAX_HWIFS; i++) { |