mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
de3a9980d8
Introduce skeleton of the virtio sound driver. The driver implements the virtio sound device specification, which has become part of the virtio standard. Initial initialization of the device, virtqueues and creation of an empty ALSA sound device. Signed-off-by: Anton Yakovlev <anton.yakovlev@opensynergy.com> Link: https://lore.kernel.org/r/20210302164709.3142702-3-anton.yakovlev@opensynergy.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
10 lines
243 B
Text
10 lines
243 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
# Sound card driver for virtio
|
|
|
|
config SND_VIRTIO
|
|
tristate "Virtio sound driver"
|
|
depends on VIRTIO
|
|
select SND_PCM
|
|
select SND_JACK
|
|
help
|
|
This is the virtual sound driver for virtio. Say Y or M.
|