projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65795ef
)
MIPS: Fix typo resulting in far too long ndelay times.
author
Ralf Baechle
<ralf@linux-mips.org>
Fri, 12 Jun 2009 16:28:00 +0000
(17:28 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Wed, 17 Jun 2009 10:06:23 +0000
(11:06 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/delay.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/include/asm/delay.h
b/arch/mips/include/asm/delay.h
index a07e51b2be1356c5425923dc1710954283ad19d1..d2d8949be6b78800e6d60ba6cc6a07b9057138aa 100644
(file)
--- a/
arch/mips/include/asm/delay.h
+++ b/
arch/mips/include/asm/delay.h
@@
-15,7
+15,7
@@
extern void __delay(unsigned int loops);
extern void __ndelay(unsigned int ns);
extern void __udelay(unsigned int us);
-#define ndelay(ns) __
u
delay(ns)
+#define ndelay(ns) __
n
delay(ns)
#define udelay(us) __udelay(us)
/* make sure "usecs *= ..." in udelay do not overflow. */