summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-03-04 11:53:15 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-03-04 14:19:26 +0100
commit2d13b856604bd9486f5190438e695d0708dc5017 (patch)
treee2e514d2eeb7ccdfa8035bbeb501ab4867ce9174 /crypto
parent74de1afbd2ed4262d4105b12641de0c5c487d930 (diff)
downloadbarebox-2d13b856604bd9486f5190438e695d0708dc5017.tar.gz
barebox-2d13b856604bd9486f5190438e695d0708dc5017.tar.xz
crc: Add PBL variant for crc_itu_t()
Enable crc_itu_t() for PBL. For the PBL use the slower-but-smaller variant without table. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 0014b0f4ce..3402f57255 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -1,5 +1,5 @@
obj-$(CONFIG_CRC32) += crc32.o
-obj-$(CONFIG_CRC_ITU_T) += crc-itu-t.o
+obj-pbl-$(CONFIG_CRC_ITU_T) += crc-itu-t.o
obj-$(CONFIG_CRC7) += crc7.o
obj-$(CONFIG_DIGEST) += digest.o
obj-$(CONFIG_DIGEST_CRC32_GENERIC) += crc32_digest.o