From: Randy Dunlap Date: Tue, 10 Mar 2009 18:59:36 +0000 (-0700) Subject: Staging: p9auth: fix dependency/build error X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9752ef46c6d32b7ccf10b874f00e433844db2b1a;p=linux-beck.git Staging: p9auth: fix dependency/build error Fix p9auth dependency/build failure. It needs to depend on CRYPTO. p9auth.c:(.text+0x107297): undefined reference to `crypto_alloc_base' p9auth.c:(.text+0x1073d4): undefined reference to `crypto_destroy_tfm' Signed-off-by: Randy Dunlap Cc: Ashwin Ganti Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/p9auth/Kconfig b/drivers/staging/p9auth/Kconfig index f53884457447..d1c66d262020 100644 --- a/drivers/staging/p9auth/Kconfig +++ b/drivers/staging/p9auth/Kconfig @@ -1,6 +1,7 @@ config PLAN9AUTH tristate "Plan 9 style capability device implementation" default n + depends on CRYPTO help This module implements the Plan 9 style capability device.