Skip to content

Commit

Permalink
Merge pull request torvalds#354 from M1cha/const-udelay
Browse files Browse the repository at this point in the history
fix __const_udelay
  • Loading branch information
tavip authored Jul 10, 2017
2 parents 2f582e0 + 1647315 commit 768a3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/lkl/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void __udelay(unsigned long usecs)

void __const_udelay(unsigned long xloops)
{
__udelay(xloops / 5);
__udelay(xloops / 0x10c7ul);
}

void calibrate_delay(void)
Expand Down

0 comments on commit 768a3db

Please sign in to comment.