diff options
author | Anton Lindqvist <anton@cvs.openbsd.org> | 2022-02-16 06:21:20 +0000 |
---|---|---|
committer | Anton Lindqvist <anton@cvs.openbsd.org> | 2022-02-16 06:21:20 +0000 |
commit | 6b5ed4ea8ca4b14dafdb7ce15afc72a6d756202a (patch) | |
tree | 78567ae4289861ca9d6a25dcc382f5eb0e9f874d /sys/dev/pci/auixp.c | |
parent | 1cea3101da903c78d6e8888c4319699662a142ee (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/dev/pci/auixp.c')
-rw-r--r-- | sys/dev/pci/auixp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/auixp.c b/sys/dev/pci/auixp.c index 578572e1a91..a69a66f1a64 100644 --- a/sys/dev/pci/auixp.c +++ b/sys/dev/pci/auixp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auixp.c,v 1.44 2022/01/09 05:42:45 jsg Exp $ */ +/* $OpenBSD: auixp.c,v 1.45 2022/02/16 06:21:18 anton Exp $ */ /* $NetBSD: auixp.c,v 1.9 2005/06/27 21:13:09 thorpej Exp $ */ /* @@ -1035,7 +1035,7 @@ auixp_post_config(struct device *self) return; } - audio_attach_mi(&auixp_hw_if, &sc->sc_codec, &sc->sc_dev); + audio_attach_mi(&auixp_hw_if, &sc->sc_codec, NULL, &sc->sc_dev); if (sc->has_spdif) sc->has_spdif = 0; |