diff options
Diffstat (limited to 'arch/arm/mach-ixp4xx/common.c')
-rw-r--r-- | arch/arm/mach-ixp4xx/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c index 00b761ff0f9c..bf25a76e9bdf 100644 --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c | |||
@@ -276,7 +276,7 @@ static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id, struct pt_regs | |||
276 | /* | 276 | /* |
277 | * Catch up with the real idea of time | 277 | * Catch up with the real idea of time |
278 | */ | 278 | */ |
279 | while ((*IXP4XX_OSTS - last_jiffy_time) > LATCH) { | 279 | while ((signed long)(*IXP4XX_OSTS - last_jiffy_time) >= LATCH) { |
280 | timer_tick(regs); | 280 | timer_tick(regs); |
281 | last_jiffy_time += LATCH; | 281 | last_jiffy_time += LATCH; |
282 | } | 282 | } |