Просмотр исходного кода

kernel: crypto: fix depends in kmod-crypto-hmac

This module had two depends lines.

Signed-off-by: Hauke Mehrtens <[email protected]>

SVN-Revision: 46576
Hauke Mehrtens 10 лет назад
Родитель
Сommit
f9ebd0b1a4
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      package/kernel/linux/modules/crypto.mk

+ 1 - 2
package/kernel/linux/modules/crypto.mk

@@ -380,10 +380,9 @@ $(eval $(call KernelPackage,crypto-ecb))
 
 define KernelPackage/crypto-hmac
   TITLE:=HMAC digest CryptoAPI module
-  DEPENDS:=+kmod-crypto-hash
+  DEPENDS:=+kmod-crypto-hash +kmod-crypto-manager
   KCONFIG:=CONFIG_CRYPTO_HMAC
   FILES:=$(LINUX_DIR)/crypto/hmac.ko
-  DEPENDS:=+kmod-crypto-manager
   AUTOLOAD:=$(call AutoLoad,09,hmac)
   $(call AddDepends/crypto)
 endef