summaryrefslogtreecommitdiffstats
path: root/sys/dev/streams/streams.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/streams/streams.c')
-rw-r--r--sys/dev/streams/streams.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/streams/streams.c b/sys/dev/streams/streams.c
index 78997fe..f4c89e0 100644
--- a/sys/dev/streams/streams.c
+++ b/sys/dev/streams/streams.c
@@ -164,16 +164,16 @@ streams_modevent(module_t mod, int type, void *unused)
return 0;
case MOD_UNLOAD:
/* XXX should check to see if it's busy first */
- remove_dev(dt_ptm);
- remove_dev(dt_arp);
- remove_dev(dt_icmp);
- remove_dev(dt_ip);
- remove_dev(dt_tcp);
- remove_dev(dt_udp);
- remove_dev(dt_rawip);
- remove_dev(dt_unix_dgram);
- remove_dev(dt_unix_stream);
- remove_dev(dt_unix_ord_stream);
+ destroy_dev(dt_ptm);
+ destroy_dev(dt_arp);
+ destroy_dev(dt_icmp);
+ destroy_dev(dt_ip);
+ destroy_dev(dt_tcp);
+ destroy_dev(dt_udp);
+ destroy_dev(dt_rawip);
+ destroy_dev(dt_unix_dgram);
+ destroy_dev(dt_unix_stream);
+ destroy_dev(dt_unix_ord_stream);
return 0;
default:
OpenPOWER on IntegriCloud