aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux/ixp4xx-kernel
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>2006-03-27 17:39:14 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-03-27 17:39:14 +0000
commit1a780ea25fb3b5d0261149e3a4b91bcd25386daa (patch)
treead264c03122b6efc203150649f8b78fd682af74d /packages/linux/ixp4xx-kernel
parent6871ac2f5e65a2961f58024a80c2ead7ae9bc5c5 (diff)
downloadopenembedded-1a780ea25fb3b5d0261149e3a4b91bcd25386daa.tar.gz
ixp4xx kernel: added patch for copypage-xscale.c
this patch exports scale_mc_clear_user_page so video-buf can be loaded again; this symbol got lost between 2.6.15 and 2.6.16
Diffstat (limited to 'packages/linux/ixp4xx-kernel')
-rw-r--r--packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch b/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch
new file mode 100644
index 0000000000..b73d219708
--- /dev/null
+++ b/packages/linux/ixp4xx-kernel/2.6.16/copypage-xscale.patch
@@ -0,0 +1,21 @@
+*** linux-2.6.16/arch/arm/mm/copypage-xscale.c- Mon Mar 27 19:10:25 2006
+--- linux-2.6.16/arch/arm/mm/copypage-xscale.c Sun Mar 26 19:32:53 2006
+***************
+*** 15,20 ****
+--- 15,21 ----
+ */
+ #include <linux/init.h>
+ #include <linux/mm.h>
++ #include <linux/module.h>
+
+ #include <asm/page.h>
+ #include <asm/pgtable.h>
+***************
+*** 129,131 ****
+--- 130,135 ----
+ .cpu_clear_user_page = xscale_mc_clear_user_page,
+ .cpu_copy_user_page = xscale_mc_copy_user_page,
+ };
++
++ EXPORT_SYMBOL(xscale_mc_clear_user_page);
++ EXPORT_SYMBOL(xscale_mc_copy_user_page);