diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-03-10 11:59:36 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:54:23 -0700 |
commit | 9752ef46c6d32b7ccf10b874f00e433844db2b1a (patch) | |
tree | 2ea2eccb21358952955cfb7bd1833d9ec9408e48 /drivers/staging/p9auth | |
parent | 00db8a8ecc91abeb46d1128a788a194018c51e77 (diff) |
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 <randy.dunlap@oracle.com>
Cc: Ashwin Ganti <ashwin.ganti@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/p9auth')
-rw-r--r-- | drivers/staging/p9auth/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/p9auth/Kconfig b/drivers/staging/p9auth/Kconfig index f5388445744..d1c66d26202 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. |