opencrypto: Make cryptosoft attach silently

cryptosoft is always present and doesn't print any useful information
when it attaches.

Reviewed by:	jhb
MFC after:	1 week
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D29098
This commit is contained in:
Mark Johnston 2021-03-05 13:11:25 -05:00
parent 89b650872b
commit 4fc60fa929

View file

@ -1658,6 +1658,7 @@ static int
swcr_probe(device_t dev)
{
device_set_desc(dev, "software crypto");
device_quiet(dev);
return (BUS_PROBE_NOWILDCARD);
}