aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/caif
diff options
context:
space:
mode:
authorKim Lilliestierna XX <kim.xx.lilliestierna@stericsson.com>2012-06-25 07:49:37 +0000
committerDavid S. Miller <davem@davemloft.net>2012-06-25 16:44:12 -0700
commita5c96b518c373fba35a8dc2e4e5fead24aeefb1c (patch)
tree92cbfe5e401514462dfbfc984379dfabd81689a2 /drivers/net/caif
parentcaif-hsi: Removed dead code (diff)
downloadlinux-dev-a5c96b518c373fba35a8dc2e4e5fead24aeefb1c.tar.xz
linux-dev-a5c96b518c373fba35a8dc2e4e5fead24aeefb1c.zip
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 <kim.xx.lilliestierna@stericsson.com> Signed-off-by: Sjur Brændeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/caif')
-rw-r--r--drivers/net/caif/caif_hsi.c2
1 files changed, 1 insertions, 1 deletions
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) {