diff options
author | Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> | 2018-05-14 08:27:40 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-05-16 12:59:50 +0200 |
commit | d6e0fbb82e73a01e4cb3631b8b3dd7aae09ab14c (patch) | |
tree | 3b25bbd880692a6db4b44a0e2ab9c0a249939828 /sound/xen/Makefile | |
parent | ALSA: xen-front: Implement Xen event channel handling (diff) | |
download | linux-d6e0fbb82e73a01e4cb3631b8b3dd7aae09ab14c.tar.xz linux-d6e0fbb82e73a01e4cb3631b8b3dd7aae09ab14c.zip |
ALSA: xen-front: Implement handling of shared buffers
Implement shared buffer handling according to the
para-virtualized sound device protocol at xen/interface/io/sndif.h:
- manage buffer memory
- handle granted references
- handle page directories
[ Fixed missing linux/kernel.h inclusion -- tiwai ]
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 03c669984000..f028bc30af5d 100644 --- a/sound/xen/Makefile +++ b/sound/xen/Makefile @@ -2,6 +2,7 @@ snd_xen_front-objs := xen_snd_front.o \ xen_snd_front_cfg.o \ - xen_snd_front_evtchnl.o + xen_snd_front_evtchnl.o \ + xen_snd_front_shbuf.o obj-$(CONFIG_SND_XEN_FRONTEND) += snd_xen_front.o |