diff options
author | matk <matk@FreeBSD.org> | 2004-03-06 15:52:42 +0000 |
---|---|---|
committer | matk <matk@FreeBSD.org> | 2004-03-06 15:52:42 +0000 |
commit | a8492f84bfa6da2f288a534e337bc3ea54b1316b (patch) | |
tree | 8da3a77b5bb1433a25b93ea34cac1f381fd53019 /sys/dev/sound/pci/maestro.c | |
parent | d763a3ee32bbf9afe40744bff2abaf67a75150f3 (diff) | |
download | FreeBSD-src-a8492f84bfa6da2f288a534e337bc3ea54b1316b.zip FreeBSD-src-a8492f84bfa6da2f288a534e337bc3ea54b1316b.tar.gz |
Augment /dev/sndstat with the module names, if applicable.
Approved by: tanimura (mentor)
Diffstat (limited to 'sys/dev/sound/pci/maestro.c')
-rw-r--r-- | sys/dev/sound/pci/maestro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/pci/maestro.c b/sys/dev/sound/pci/maestro.c index a2ac979..41571c6 100644 --- a/sys/dev/sound/pci/maestro.c +++ b/sys/dev/sound/pci/maestro.c @@ -1033,8 +1033,8 @@ agg_attach(device_t dev) ess->irqid = irqid; ess->ih = ih; - snprintf(status, SND_STATUSLEN, "at I/O port 0x%lx irq %ld", - rman_get_start(reg), rman_get_start(irq)); + snprintf(status, SND_STATUSLEN, "at I/O port 0x%lx irq %ld %s", + rman_get_start(reg), rman_get_start(irq),PCM_KLDSTRING(snd_maestro)); if (pcm_register(dev, ess, AGG_MAXPLAYCH, 1)) goto bad; |