summaryrefslogtreecommitdiffstats
path: root/arch/m68k/lib/checksum.c
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2011-04-18 07:27:55 +0200
committerGreg Ungerer <gerg@uclinux.org>2011-05-24 02:03:50 +0200
commit9461702d2a54cd4d9da09b7755c96815791a9d07 (patch)
tree86bf4b2cf8ce5a46bffc5a7b175203b61477d612 /arch/m68k/lib/checksum.c
parentm68k: remove duplicate memcpy() implementation (diff)
downloadlinux-9461702d2a54cd4d9da09b7755c96815791a9d07.tar.xz
linux-9461702d2a54cd4d9da09b7755c96815791a9d07.zip
m68k: let Makefile sort out compiling mmu and non-mmu lib/checksum.c
We don't need an arch/m68k/lib/checksum.c wrapper to include the correct mmu or non-mmu version of the checksum code. Let the Makefile just build the appropriate one. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/lib/checksum.c')
-rw-r--r--arch/m68k/lib/checksum.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/m68k/lib/checksum.c b/arch/m68k/lib/checksum.c
deleted file mode 100644
index 1297536060de..000000000000
--- a/arch/m68k/lib/checksum.c
+++ /dev/null
@@ -1,5 +0,0 @@
-#ifdef CONFIG_MMU
-#include "checksum_mm.c"
-#else
-#include "checksum_no.c"
-#endif