Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27137e52 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by David S. Miller
Browse files

sparc,sparc64: unify mm/



- move all sparc64/mm/ files to arch/sparc/mm/
- commonly named files are named _64.c
- add files to sparc/mm/Makefile preserving link order
- delete now unused sparc64/mm/Makefile
- sparc64 now finds mm/ in sparc

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c37ddd93
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -4,13 +4,17 @@
asflags-y := -ansi
ccflags-y := -Werror

obj-y                   := fault_$(BITS).o
obj-$(CONFIG_SPARC64)   += ultra.o tlb.o tsb.o
obj-y                   += fault_$(BITS).o
obj-y                   += init_$(BITS).o
obj-$(CONFIG_SPARC32)   += loadmmu.o
obj-y                   += generic_$(BITS).o
obj-$(CONFIG_SPARC32)   += extable.o btfixup.o srmmu.o iommu.o io-unit.o
obj-$(CONFIG_SPARC32)   += hypersparc.o viking.o tsunami.o swift.o

# Only used by sparc64
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o

# Only used by sparc32
obj-$(CONFIG_HIGHMEM)   += highmem.o

+0 −0

File moved.

+0 −0

File moved.

+2 −2
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@
#include <asm/cpudata.h>
#include <asm/irq.h>

#include "init.h"
#include "init_64.h"

unsigned long kern_linear_pte_xor[2] __read_mostly;

@@ -954,7 +954,7 @@ int of_node_to_nid(struct device_node *dp)
	return nid;
}

static void __init add_node_ranges(void)
static void add_node_ranges(void)
{
	int i;

Loading