From: Kim Lilliestierna XX Date: Mon, 25 Jun 2012 07:49:37 +0000 (+0000) Subject: caif-hsi: changed test on aggregation_timeout X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a5c96b518c373fba35a8dc2e4e5fead24aeefb1c;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git caif-hsi: changed test on aggregation_timeout Aggregation_timeout is an unsigned long, a test for less than zero can never become true, compare with zero instead. Signed-off-by: Kim Lilliestierna Signed-off-by: Sjur Brændeland Signed-off-by: David S. Miller --- diff --git a/drivers/net/caif/caif_hsi.c b/drivers/net/caif/caif_hsi.c index f81f61fb39bc..56cc94120677 100644 --- a/drivers/net/caif/caif_hsi.c +++ b/drivers/net/caif/caif_hsi.c @@ -115,7 +115,7 @@ static bool cfhsi_can_send_aggregate(struct cfhsi *cfhsi) { int i; - if (cfhsi->aggregation_timeout < 0) + if (cfhsi->aggregation_timeout == 0) return true; for (i = 0; i < CFHSI_PRIO_BEBK; ++i) {