Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e3e28ae authored by Arun Kumar Dasari's avatar Arun Kumar Dasari Committed by Gerrit - the friendly Code Review server
Browse files

msm: Add msm_audio_g711_dec header file to Kbuild



This change adds the msm_audio_g711_dec.h file to the Kbuild.
With this change header appear properly in userspace builds.

Change-Id: Iab3a45c43b38b4e004c9c297fb84dfe9e6f3e2be
Signed-off-by: default avatarYamit Mehta <ymehta@codeaurora.org>
parent e5e45a93
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -292,6 +292,7 @@ header-y += msm_audio_wmapro.h
header-y += msm_audio_alac.h
header-y += msm_audio_ape.h
header-y += msm_audio_g711.h
header-y += msm_audio_g711_dec.h
header-y += msm-core-interface.h
header-y += msm_dsps.h
header-y += msm_ion.h
+16 −0
Original line number Diff line number Diff line
#ifndef _UAPI_MSM_AUDIO_G711_H
#define _UAPI_MSM_AUDIO_G711_H

#include <linux/msm_audio.h>

struct msm_audio_g711_dec_config {
	uint32_t sample_rate;
};

#define AUDIO_SET_G711_DEC_CONFIG  _IOW(AUDIO_IOCTL_MAGIC, \
	(AUDIO_MAX_COMMON_IOCTL_NUM+0), struct msm_audio_g711_dec_config)

#define AUDIO_GET_G711_DEC_CONFIG  _IOR(AUDIO_IOCTL_MAGIC, \
	(AUDIO_MAX_COMMON_IOCTL_NUM+1), struct msm_audio_g711_dec_config)

#endif /* _UAPI_MSM_AUDIO_G711_H */