diff options
Diffstat (limited to 'drivers/edac/edac_pci.c')
-rw-r--r-- | drivers/edac/edac_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/edac_pci.c b/drivers/edac/edac_pci.c index e0b47b74ec45..32be43576a8e 100644 --- a/drivers/edac/edac_pci.c +++ b/drivers/edac/edac_pci.c | |||
@@ -246,7 +246,7 @@ static void edac_pci_workq_function(struct work_struct *work_req) | |||
246 | /* if we are on a one second period, then use round */ | 246 | /* if we are on a one second period, then use round */ |
247 | msec = edac_pci_get_poll_msec(); | 247 | msec = edac_pci_get_poll_msec(); |
248 | if (msec == 1000) | 248 | if (msec == 1000) |
249 | delay = round_jiffies(msecs_to_jiffies(msec)); | 249 | delay = round_jiffies_relative(msecs_to_jiffies(msec)); |
250 | else | 250 | else |
251 | delay = msecs_to_jiffies(msec); | 251 | delay = msecs_to_jiffies(msec); |
252 | 252 | ||