From: Kim Lilliestierna XX Date: Mon, 25 Jun 2012 07:49:37 +0000 (+0000) Subject: caif-hsi: changed test on aggregation_timeout X-Git-Tag: firefly_0821_release~3680^2~2381^2~440 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a5c96b518c373fba35a8dc2e4e5fead24aeefb1c;p=firefly-linux-kernel-4.4.55.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) {