Files
android_kernel_samsung_sm86…/qcom/opensource/audio-kernel/asoc/codecs/wcd-mbhc-adc.h
David Wronek 91a8910061 Add 'qcom/opensource/audio-kernel/' from commit '0ee387dfadf349618494d6f82ec8cec796ebef70'
git-subtree-dir: qcom/opensource/audio-kernel
git-subtree-mainline: 99ab089c55
git-subtree-split: 0ee387dfad
Change-Id:
repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/audio-kernel-ar
tag: AUDIO.LA.9.0.r1-07400-lanai.0
2024-10-06 16:43:49 +02:00

28 lines
549 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
*/
#ifndef __WCD_MBHC_ADC_H__
#define __WCD_MBHC_ADC_H__
#include <asoc/wcd-mbhc-v2.h>
enum wcd_mbhc_adc_mux_ctl {
MUX_CTL_AUTO = 0,
MUX_CTL_IN2P,
MUX_CTL_IN3P,
MUX_CTL_IN4P,
MUX_CTL_HPH_L,
MUX_CTL_HPH_R,
MUX_CTL_NONE,
};
#if IS_ENABLED(CONFIG_SND_SOC_WCD_MBHC_ADC)
void wcd_mbhc_adc_init(struct wcd_mbhc *mbhc);
#else
static inline void wcd_mbhc_adc_init(struct wcd_mbhc *mbhc)
{
}
#endif
#endif /* __WCD_MBHC_ADC_H__ */