8a63b1994c
This adds a driver for the ST-Ericsson ux500 hash hardware module. The driver implements support for SHA-1 and SHA-2. Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Andreas Westin <andreas.westin@stericsson.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
12 lines
314 B
Makefile
12 lines
314 B
Makefile
#
|
|
# Copyright (C) ST-Ericsson SA 2010
|
|
# Author: Shujuan Chen (shujuan.chen@stericsson.com)
|
|
# License terms: GNU General Public License (GPL) version 2
|
|
#
|
|
ifdef CONFIG_CRYPTO_DEV_UX500_DEBUG
|
|
CFLAGS_hash_core.o := -DDEBUG -O0
|
|
endif
|
|
|
|
obj-$(CONFIG_CRYPTO_DEV_UX500_HASH) += ux500_hash.o
|
|
ux500_hash-objs := hash_core.o
|