[XFRM]: Remove ifdef crypto.

and select the crypto subsystem if neccessary

Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Sebastian Siewior 2008-01-09 00:36:17 -08:00 committed by David S. Miller
parent 06eaa1a01d
commit 50dd79653e
2 changed files with 1 additions and 2 deletions

View File

@ -3,6 +3,7 @@
# #
config XFRM config XFRM
bool bool
select CRYPTO
depends on NET depends on NET
config XFRM_USER config XFRM_USER

View File

@ -486,7 +486,6 @@ EXPORT_SYMBOL_GPL(xfrm_ealg_get_byidx);
*/ */
void xfrm_probe_algs(void) void xfrm_probe_algs(void)
{ {
#ifdef CONFIG_CRYPTO
int i, status; int i, status;
BUG_ON(in_softirq()); BUG_ON(in_softirq());
@ -511,7 +510,6 @@ void xfrm_probe_algs(void)
if (calg_list[i].available != status) if (calg_list[i].available != status)
calg_list[i].available = status; calg_list[i].available = status;
} }
#endif
} }
EXPORT_SYMBOL_GPL(xfrm_probe_algs); EXPORT_SYMBOL_GPL(xfrm_probe_algs);