diff options
author | Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> | 2018-05-14 08:27:38 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-05-16 12:58:39 +0200 |
commit | fd3b36045c2c612b5f44a47f388677af256d1d0a (patch) | |
tree | 225cf95c572f3799842b1b317471652c3547c4fe /sound/xen/Makefile | |
parent | ALSA: xen-front: Introduce Xen para-virtualized sound frontend driver (diff) | |
download | linux-fd3b36045c2c612b5f44a47f388677af256d1d0a.tar.xz linux-fd3b36045c2c612b5f44a47f388677af256d1d0a.zip |
ALSA: xen-front: Read sound driver configuration from Xen store
Read configuration values from Xen store according
to xen/interface/io/sndif.h protocol:
- introduce configuration structures for different
components, e.g. sound card, device, stream
- read PCM HW parameters, e.g rate, format etc.
- detect stream type (capture/playback)
- read device and card parameters
Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/xen/Makefile')
-rw-r--r-- | sound/xen/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/xen/Makefile b/sound/xen/Makefile index 4507ef3c27fd..06705bef61fa 100644 --- a/sound/xen/Makefile +++ b/sound/xen/Makefile @@ -1,5 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 OR MIT -snd_xen_front-objs := xen_snd_front.o +snd_xen_front-objs := xen_snd_front.o \ + xen_snd_front_cfg.o obj-$(CONFIG_SND_XEN_FRONTEND) += snd_xen_front.o |