From: Geliang Tang Date: Sun, 9 Apr 2017 01:41:32 +0000 (+0800) Subject: ide: use setup_timer X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1a1df90ae195d9c676b6f313375f3e8f13752e13;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ide: use setup_timer Use setup_timer() instead of init_timer() to simplify the code. Signed-off-by: Geliang Tang Signed-off-by: David S. Miller --- diff --git a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c index a74ae8df4bb8..023562565d11 100644 --- a/drivers/ide/ide-probe.c +++ b/drivers/ide/ide-probe.c @@ -1183,9 +1183,7 @@ static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index) spin_lock_init(&hwif->lock); - init_timer(&hwif->timer); - hwif->timer.function = &ide_timer_expiry; - hwif->timer.data = (unsigned long)hwif; + setup_timer(&hwif->timer, &ide_timer_expiry, (unsigned long)hwif); init_completion(&hwif->gendev_rel_comp);