Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm
Pull ARM fix from Russell King: "A 5% error in delay calculation was introduced during the last merge window, which had gone un-noticed until yesterday" * 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm: ARM: fix delays
This commit is contained in:
commit
c7f5d36a3c
|
@ -10,7 +10,7 @@
|
||||||
#include <asm/param.h> /* HZ */
|
#include <asm/param.h> /* HZ */
|
||||||
|
|
||||||
#define MAX_UDELAY_MS 2
|
#define MAX_UDELAY_MS 2
|
||||||
#define UDELAY_MULT UL(2047 * HZ + 483648 * HZ / 1000000)
|
#define UDELAY_MULT UL(2147 * HZ + 483648 * HZ / 1000000)
|
||||||
#define UDELAY_SHIFT 31
|
#define UDELAY_SHIFT 31
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
Loading…
Reference in New Issue