diff options
author | Anton Yakovlev <anton.yakovlev@opensynergy.com> | 2021-03-02 17:47:02 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2021-03-07 09:07:16 +0100 |
commit | de3a9980d8c34b2479173e809afa820473db676a (patch) | |
tree | 8ae468b39ea7954e5e8aed0d2b62e20f094a2dc1 /sound/virtio/Makefile | |
parent | 0ae0337f929a970ee8d83e0e95e6b8d05562ce3b (diff) | |
download | linux-de3a9980d8c34b2479173e809afa820473db676a.tar.gz |
ALSA: virtio: add virtio sound driver
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>
Diffstat (limited to 'sound/virtio/Makefile')
-rw-r--r-- | sound/virtio/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/virtio/Makefile b/sound/virtio/Makefile new file mode 100644 index 000000000000..8c87ebb9982b --- /dev/null +++ b/sound/virtio/Makefile @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-$(CONFIG_SND_VIRTIO) += virtio_snd.o + +virtio_snd-objs := \ + virtio_card.o + |