summaryrefslogtreecommitdiff
path: root/sys/arch/luna88k
diff options
context:
space:
mode:
authorAnton Lindqvist <anton@cvs.openbsd.org>2022-02-16 06:21:20 +0000
committerAnton Lindqvist <anton@cvs.openbsd.org>2022-02-16 06:21:20 +0000
commit6b5ed4ea8ca4b14dafdb7ce15afc72a6d756202a (patch)
tree78567ae4289861ca9d6a25dcc382f5eb0e9f874d /sys/arch/luna88k
parent1cea3101da903c78d6e8888c4319699662a142ee (diff)
Make room for a cookie argument passed to audio_attach_mi(). Currently
unused but intended to be used to correlate audio and wskbd devices. ok ratchov@
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r--sys/arch/luna88k/cbus/nec86.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/cbus/nec86.c b/sys/arch/luna88k/cbus/nec86.c
index b6516cc4888..ed86c021355 100644
--- a/sys/arch/luna88k/cbus/nec86.c
+++ b/sys/arch/luna88k/cbus/nec86.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nec86.c,v 1.3 2016/09/19 06:46:43 ratchov Exp $ */
+/* $OpenBSD: nec86.c,v 1.4 2022/02/16 06:21:18 anton Exp $ */
/* $NecBSD: nec86.c,v 1.11 1999/07/23 11:04:39 honda Exp $ */
/* $NetBSD$ */
@@ -237,7 +237,7 @@ nec86_attachsubr(struct nec86_softc *sc)
if (sc->sc_attached == 0) {
printf(": %s\n", boardname[ysc->model]);
- audio_attach_mi(&nec86_hw_if, ysc, &ysc->sc_dev);
+ audio_attach_mi(&nec86_hw_if, ysc, NULL, &ysc->sc_dev);
sc->sc_attached = 1;
}
}