mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-11 23:50:25 +00:00
ide: move blk_register_region() call out from init_gendisk()
Move blk_register_region() call out from init_gendisk() to hwif_init(). There should be no functionality changes caused by this patch. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
5c2854e62c
commit
3a4e7c96d6
@ -1200,8 +1200,6 @@ static void init_gendisk (ide_hwif_t *hwif)
|
|||||||
drive->gendev.driver_data = drive;
|
drive->gendev.driver_data = drive;
|
||||||
drive->gendev.release = drive_release_dev;
|
drive->gendev.release = drive_release_dev;
|
||||||
}
|
}
|
||||||
blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
|
|
||||||
THIS_MODULE, ata_probe, ata_lock, hwif);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hwif_init(ide_hwif_t *hwif)
|
static int hwif_init(ide_hwif_t *hwif)
|
||||||
@ -1261,6 +1259,8 @@ static int hwif_init(ide_hwif_t *hwif)
|
|||||||
|
|
||||||
done:
|
done:
|
||||||
init_gendisk(hwif);
|
init_gendisk(hwif);
|
||||||
|
blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
|
||||||
|
THIS_MODULE, ata_probe, ata_lock, hwif);
|
||||||
ide_acpi_init(hwif);
|
ide_acpi_init(hwif);
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user