summaryrefslogtreecommitdiffstats
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorFranck Jullien <franck.jullien@gmail.com>2011-11-24 21:46:32 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-25 12:37:25 +0100
commit52ef4af579d1755e0879ced30aa2038386d42c20 (patch)
treeca857b1f04a411e6f844d0f6f72acc3f5ae286d7 /crypto/Makefile
parent7bb009c74480153b02a2e0d976a136bf7716e2ab (diff)
downloadbarebox-52ef4af579d1755e0879ced30aa2038386d42c20.tar.gz
barebox-52ef4af579d1755e0879ced30aa2038386d42c20.tar.xz
crypto: Add crc7 function
This function in used by the MCI over SPI driver. Signed-off-by: Franck Jullien <franck.jullien@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 955a66de48..7c5b035b73 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -1,5 +1,6 @@
obj-$(CONFIG_CRC32) += crc32.o
obj-$(CONFIG_CRC16) += crc16.o
+obj-$(CONFIG_CRC7) += crc7.o
obj-$(CONFIG_MD5) += md5.o
obj-$(CONFIG_SHA1) += sha1.o
obj-$(CONFIG_SHA224) += sha2.o