mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
4f0e77f8f0
Implementation in linux/crc16.h provides standard CRC-16 algorithm with polynomial x^16 + x^15 + x^2 + 1. Use it and remove duplicate ext4 CRC-16 specific code. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
11 lines
296 B
Makefile
11 lines
296 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2003
|
|
# Pavel Bartusek, Sysgo Real-Time Solutions AG, pba@sysgo.de
|
|
#
|
|
|
|
obj-y := ext4fs.o ext4_common.o dev.o
|
|
obj-$(CONFIG_EXT4_WRITE) += ext4_write.o ext4_journal.o
|