From c0c657bd92911788b96d9670620eabf024453752 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 30 Sep 2010 22:15:13 +0100 Subject: Split meta-extras and meta-moblin out of the main repository Signed-off-by: Richard Purdie --- .../timespec_add_ns_avoid_udivdi3.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 meta-extras/packages/linux/linux-openmoko/timespec_add_ns_avoid_udivdi3.patch (limited to 'meta-extras/packages/linux/linux-openmoko') diff --git a/meta-extras/packages/linux/linux-openmoko/timespec_add_ns_avoid_udivdi3.patch b/meta-extras/packages/linux/linux-openmoko/timespec_add_ns_avoid_udivdi3.patch deleted file mode 100644 index 4aba897b0..000000000 --- a/meta-extras/packages/linux/linux-openmoko/timespec_add_ns_avoid_udivdi3.patch +++ /dev/null @@ -1,20 +0,0 @@ -Backport of this patch here - -http://www.mail-archive.com/linux-kernel@vger.kernel.org/msg270684.html - -Needed for 2.6.24 to compile with gcc 4.3 -Index: linux-2.6.24/include/linux/time.h -=================================================================== ---- linux-2.6.24.orig/include/linux/time.h 2008-05-28 15:39:46.000000000 -0700 -+++ linux-2.6.24/include/linux/time.h 2008-05-28 15:40:48.000000000 -0700 -@@ -173,6 +173,10 @@ - { - ns += a->tv_nsec; - while(unlikely(ns >= NSEC_PER_SEC)) { -+ /* The following asm() prevents the compiler from -+ * optimising this loop into a modulo operation. */ -+ asm("" : "+r"(ns)); -+ - ns -= NSEC_PER_SEC; - a->tv_sec++; - } -- cgit v1.2.3