summaryrefslogtreecommitdiffstats
path: root/sys/dev/audio.c
diff options
context:
space:
mode:
authorratchov <ratchov@openbsd.org>2016-09-19 06:46:43 +0000
committerratchov <ratchov@openbsd.org>2016-09-19 06:46:43 +0000
commit56fd3f56d1a8f522a9ced8a036f88142069e12b8 (patch)
tree9f734177ed39b022e9f5714bb3209e8a44dfb14e /sys/dev/audio.c
parentUpdate ld search path for libssl/libcrypto, fixes cross-build after source moved. (diff)
downloadwireguard-openbsd-56fd3f56d1a8f522a9ced8a036f88142069e12b8.tar.xz
wireguard-openbsd-56fd3f56d1a8f522a9ced8a036f88142069e12b8.zip
Remove unused getdev() audio driver functions.
Diffstat (limited to 'sys/dev/audio.c')
-rw-r--r--sys/dev/audio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/audio.c b/sys/dev/audio.c
index 920889e6ad9..d3a5892d523 100644
--- a/sys/dev/audio.c
+++ b/sys/dev/audio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: audio.c,v 1.152 2016/09/14 06:12:19 ratchov Exp $ */
+/* $OpenBSD: audio.c,v 1.153 2016/09/19 06:46:43 ratchov Exp $ */
/*
* Copyright (c) 2015 Alexandre Ratchov <alex@caoua.org>
*
@@ -1023,7 +1023,6 @@ audio_attach(struct device *parent, struct device *self, void *aux)
(ops->start_input == 0 && ops->trigger_input == 0) ||
ops->halt_output == 0 ||
ops->halt_input == 0 ||
- ops->getdev == 0 ||
ops->set_port == 0 ||
ops->get_port == 0 ||
ops->query_devinfo == 0 ||