patch-2.3.23 linux/arch/arm/mm/mm-ebsa110.c

Next file: linux/arch/arm/mm/mm-footbridge.c
Previous file: linux/arch/arm/mm/mm-armv.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.3.22/linux/arch/arm/mm/mm-ebsa110.c linux/arch/arm/mm/mm-ebsa110.c
@@ -3,19 +3,27 @@
  *
  * Extra MM routines for the EBSA-110 architecture
  *
- * Copyright (C) 1998 Russell King
+ * Copyright (C) 1998-1999 Russell King
  */
-#include <linux/sched.h>
 #include <linux/mm.h>
 #include <linux/init.h>
 
 #include <asm/pgtable.h>
 #include <asm/page.h>
-#include <asm/io.h>
-#include <asm/proc/mm-init.h>
+
+#include "map.h"
  
-#define MAPPING \
-	{ IO_BASE - PGDIR_SIZE	, 0xc0000000	, PGDIR_SIZE	, DOMAIN_IO, 0, 1 }, \
-	{ IO_BASE		, IO_START	, IO_SIZE	, DOMAIN_IO, 0, 1 }
+struct mem_desc mem_desc[] __initdata = {
+	0, 0
+};
+
+unsigned int __initdata mem_desc_size = 0;
+
+const struct map_desc io_desc[] __initdata = {
+	{ IO_BASE - PGDIR_SIZE, 0xc0000000, PGDIR_SIZE, DOMAIN_IO, 0, 1, 0, 0 },
+	{ IO_BASE             , IO_START  , IO_SIZE   , DOMAIN_IO, 0, 1, 0, 0 }
+};
+
+#define SIZEOFMAP (sizeof(mapping) / sizeof(mapping[0]))
 
-#include "mm-armv.c"
+unsigned int __initdata io_desc_size = SIZEOFMAP;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)