diff options
Diffstat (limited to 'drivers/firewire/core-cdev.c')
| -rw-r--r-- | drivers/firewire/core-cdev.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firewire/core-cdev.c b/drivers/firewire/core-cdev.c index e0c13fb3ae2..62ac111af24 100644 --- a/drivers/firewire/core-cdev.c +++ b/drivers/firewire/core-cdev.c @@ -1205,7 +1205,8 @@ static void iso_resource_work(struct work_struct *work)  	todo = r->todo;  	/* Allow 1000ms grace period for other reallocations. */  	if (todo == ISO_RES_ALLOC && -	    time_is_after_jiffies(client->device->card->reset_jiffies + HZ)) { +	    time_before64(get_jiffies_64(), +			  client->device->card->reset_jiffies + HZ)) {  		schedule_iso_resource(r, DIV_ROUND_UP(HZ, 3));  		skip = true;  	} else {  |