diff options
author | markm <markm@FreeBSD.org> | 2002-10-16 14:31:34 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-10-16 14:31:34 +0000 |
commit | 658a7ab8f2d91da8b2da85980436fd500accaf92 (patch) | |
tree | 15423431124b67e918f64aee072db86a94386607 /sys/dev/ubsec | |
parent | 98e716a4fe3c11b8fa3a358acb490ca6d58d7ff6 (diff) | |
download | FreeBSD-src-658a7ab8f2d91da8b2da85980436fd500accaf92.zip FreeBSD-src-658a7ab8f2d91da8b2da85980436fd500accaf92.tar.gz |
Module-ize the 'core' crypto stuff. This may still need to be compiled
into the kernel by default (if required), but other modules can now
depend() on this.
Fix inter-module dependancy.
Earlier version OK'ed by: sam
Diffstat (limited to 'sys/dev/ubsec')
-rw-r--r-- | sys/dev/ubsec/ubsec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/ubsec/ubsec.c b/sys/dev/ubsec/ubsec.c index 90df6d3..5071989 100644 --- a/sys/dev/ubsec/ubsec.c +++ b/sys/dev/ubsec/ubsec.c @@ -124,6 +124,7 @@ static driver_t ubsec_driver = { static devclass_t ubsec_devclass; DRIVER_MODULE(ubsec, pci, ubsec_driver, ubsec_devclass, 0, 0); +MODULE_DEPEND(ubsec, crypto, 1, 1, 1); static void ubsec_intr(void *); static int ubsec_newsession(void *, u_int32_t *, struct cryptoini *); |