From: Sascha Wildner Date: Sun, 13 Dec 2015 13:30:30 +0000 (+0100) Subject: kernel/sound: Add back intr_config_hook descriptions. X-Git-Tag: v4.6.0rc~1192 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/ae3b72a687a5171cb321861eb662b710cdc1c833 kernel/sound: Add back intr_config_hook descriptions. --- diff --git a/sys/dev/sound/pci/atiixp.c b/sys/dev/sound/pci/atiixp.c index 4cd5784b91..abbd448ab8 100644 --- a/sys/dev/sound/pci/atiixp.c +++ b/sys/dev/sound/pci/atiixp.c @@ -1294,6 +1294,7 @@ atiixp_pci_attach(device_t dev) sc->delayed_attach.ich_func = atiixp_chip_post_init; sc->delayed_attach.ich_arg = sc; + sc->delayed_attach.ich_desc = "snd_atiixp"; if (cold == 0 || config_intrhook_establish(&sc->delayed_attach) != 0) { sc->delayed_attach.ich_func = NULL; diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c index 5f0b29a311..146386c52f 100644 --- a/sys/dev/sound/pci/hda/hdac.c +++ b/sys/dev/sound/pci/hda/hdac.c @@ -1275,6 +1275,7 @@ hdac_attach(device_t dev) /* Defer remaining of initialization until interrupts are enabled */ sc->intrhook.ich_func = hdac_attach2; sc->intrhook.ich_arg = (void *)sc; + sc->intrhook.ich_desc = "snd_hda"; if (cold == 0 || config_intrhook_establish(&sc->intrhook) != 0) { sc->intrhook.ich_func = NULL; hdac_attach2((void *)sc); diff --git a/sys/dev/sound/pci/ich.c b/sys/dev/sound/pci/ich.c index eb4ef59eff..bf2f6a3c37 100644 --- a/sys/dev/sound/pci/ich.c +++ b/sys/dev/sound/pci/ich.c @@ -1082,6 +1082,7 @@ ich_pci_attach(device_t dev) sc->intrhook.ich_func = ich_calibrate; sc->intrhook.ich_arg = sc; + sc->intrhook.ich_desc = "snd_ich"; if (cold == 0 || config_intrhook_establish(&sc->intrhook) != 0) { sc->intrhook.ich_func = NULL;