From: Rafał Miłecki Date: Tue, 13 Apr 2021 15:18:27 +0000 (+0200) Subject: kernel: crypto: format "crypto-hw-ccp" dependencies X-Git-Tag: v21.02.0-rc1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48262735d9b7b824e947d8ea0b6b8571f678f265;p=thirdparty%2Fopenwrt.git kernel: crypto: format "crypto-hw-ccp" dependencies Use multiples lines for better readability and sort lines. Suggested-by: Stijn Tintel Signed-off-by: Rafał Miłecki (cherry picked from commit 107111adbba16328f9853a4d89db4a103b20118c) --- diff --git a/package/kernel/linux/modules/crypto.mk b/package/kernel/linux/modules/crypto.mk index 19b0d4696b4..b8b9e5f9fd7 100644 --- a/package/kernel/linux/modules/crypto.mk +++ b/package/kernel/linux/modules/crypto.mk @@ -313,7 +313,14 @@ $(eval $(call KernelPackage,crypto-hmac)) define KernelPackage/crypto-hw-ccp TITLE:=AMD Cryptographic Coprocessor - DEPENDS:=+kmod-crypto-authenc +kmod-crypto-hash +kmod-crypto-manager +kmod-random-core +kmod-crypto-sha1 +kmod-crypto-sha256 +kmod-crypto-rsa + DEPENDS:= \ + +kmod-crypto-authenc \ + +kmod-crypto-hash \ + +kmod-crypto-manager \ + +kmod-crypto-rsa \ + +kmod-crypto-sha1 \ + +kmod-crypto-sha256 \ + +kmod-random-core KCONFIG:= \ CONFIG_CRYPTO_HW=y \ CONFIG_CRYPTO_DEV_CCP=y \