Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7362951b authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide: move ->lock and ->timer init from init_irq() to ide_init_port_data()

parent d336ae3c
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -941,11 +941,6 @@ static int init_irq (ide_hwif_t *hwif)
	int sa = 0;

	mutex_lock(&ide_cfg_mtx);
	spin_lock_init(&hwif->lock);

	init_timer(&hwif->timer);
	hwif->timer.function = &ide_timer_expiry;
	hwif->timer.data = (unsigned long)hwif;

	irq_handler = hwif->host->irq_handler;
	if (irq_handler == NULL)
@@ -1306,6 +1301,12 @@ static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
	hwif->name[2]	= 'e';
	hwif->name[3]	= '0' + index;

	spin_lock_init(&hwif->lock);

	init_timer(&hwif->timer);
	hwif->timer.function = &ide_timer_expiry;
	hwif->timer.data = (unsigned long)hwif;

	init_completion(&hwif->gendev_rel_comp);

	hwif->tp_ops = &default_tp_ops;