mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
7f73bafc46
We have two implementations of the IP checksuming code for the m68k arch. One uses the more advanced instructions available in 68020 and above processors, the other uses the simpler instructions available on the original 68000 processors and the modern ColdFire processors. This simpler code is pretty much the same as the generic lib implementation of the IP csum functions. So lets just switch over to using that. That means we can completely remove the checksum_no.c file, and only have the local fast code used for the more complex 68k CPU family members. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
19 lines
301 B
Makefile
19 lines
301 B
Makefile
|
|
#
|
|
# Makefile for m68k-specific library files..
|
|
#
|
|
|
|
lib-y := ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \
|
|
memcpy.o memset.o memmove.o
|
|
|
|
ifdef CONFIG_MMU
|
|
lib-y += string.o uaccess.o
|
|
else
|
|
lib-y += mulsi3.o divsi3.o udivsi3.o modsi3.o umodsi3.o
|
|
endif
|
|
|
|
ifndef CONFIG_GENERIC_CSUM
|
|
lib-y += checksum.o
|
|
endif
|
|
|