From: Shawn Lin Date: Wed, 11 Jan 2017 04:14:49 +0000 (+0800) Subject: mmc: vub300: Remove bogus check of irqs_queued X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dc0f585e839a857efd86968bfe65a905753182da;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mmc: vub300: Remove bogus check of irqs_queued It's unnecessary to check the irqs_queued value as it always needs to queue one if irq isn't enabled. Signed-off-by: Shawn Lin Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/vub300.c b/drivers/mmc/host/vub300.c index bb3e0d1dd355..21ea776c6e07 100644 --- a/drivers/mmc/host/vub300.c +++ b/drivers/mmc/host/vub300.c @@ -640,8 +640,6 @@ static void __vub300_irqpoll_response(struct vub300_mmc_host *vub300) mutex_lock(&vub300->irq_mutex); if (vub300->irq_enabled) mmc_signal_sdio_irq(vub300->mmc); - else if (vub300->irqs_queued) - vub300->irqs_queued += 1; else vub300->irqs_queued += 1; vub300->irq_disabled = 0;