From: Nishanth Aravamudan Date: Mon, 20 Jun 2005 21:54:12 +0000 (+0200) Subject: [PATCH] net/pcnet32: replace schedule_timeout() with msleep_interruptible() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f17697a37ccd2128f37250d2e7715c59931dc458;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [PATCH] net/pcnet32: replace schedule_timeout() with msleep_interruptible() Use msleep_interruptible() instead of schedule_timeout() to guarantee the task delays as expected. Signed-off-by: Nishanth Aravamudan Signed-off-by: Maximilian Attems Signed-off-by: Domen Puncer --- diff --git a/drivers/net/pcnet32.c b/drivers/net/pcnet32.c index 13f114876965..3213f3e50487 100644 --- a/drivers/net/pcnet32.c +++ b/drivers/net/pcnet32.c @@ -850,7 +850,7 @@ static int pcnet32_phys_id(struct net_device *dev, u32 data) if ((!data) || (data > (u32)(MAX_SCHEDULE_TIMEOUT / HZ))) data = (u32)(MAX_SCHEDULE_TIMEOUT / HZ); - schedule_timeout(data * HZ); + msleep_interruptible(data * 1000); del_timer_sync(&lp->blink_timer); /* Restore the original value of the bcrs */