From 18b38b0eb68cbcb8793efe989dcd8796a60288af Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 12 Jun 2009 20:20:47 +0200 Subject: kernel patch cleanup - move patches to kernel version specific directory - enable execute bit on md5sum wrapper - remove wrong include in BSDmakefile - enable ROOTFS for rb532 device - add mips specific patch for lib/delay.c typo --- target/linux/patches/2.6.30/mips-delay-fix.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 target/linux/patches/2.6.30/mips-delay-fix.patch (limited to 'target/linux/patches/2.6.30/mips-delay-fix.patch') diff --git a/target/linux/patches/2.6.30/mips-delay-fix.patch b/target/linux/patches/2.6.30/mips-delay-fix.patch new file mode 100644 index 000000000..bb99f1df6 --- /dev/null +++ b/target/linux/patches/2.6.30/mips-delay-fix.patch @@ -0,0 +1,11 @@ +diff -Nur linux-2.6.30.orig/arch/mips/lib/delay.c linux-2.6.30/arch/mips/lib/delay.c +--- linux-2.6.30.orig/arch/mips/lib/delay.c 2009-06-10 05:05:27.000000000 +0200 ++++ linux-2.6.30/arch/mips/lib/delay.c 2009-06-12 19:11:07.000000000 +0200 +@@ -51,6 +51,6 @@ + { + unsigned int lpj = current_cpu_data.udelay_val; + +- __delay((us * 0x00000005 * HZ * lpj) >> 32); ++ __delay((ns * 0x00000005 * HZ * lpj) >> 32); + } + EXPORT_SYMBOL(__ndelay); -- cgit v1.2.3