Add CONFIG_AUDIO_QGKI check for variables and functions in audio drivers, so they are used only during a QGKI build. Change-Id: Ia04232566367f196f298a49cf3962bb7927bec6a Signed-off-by: Vignesh Kulothungan <vigneshk@codeaurora.org>
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2014, 2018, 2020 The Linux Foundation. All rights reserved.
|
|
*/
|
|
#ifndef __Q6AFECAL_HWDEP_H__
|
|
#define __Q6AFECAL_HWDEP_H__
|
|
#include <sound/msmcal-hwdep.h>
|
|
|
|
enum q6afe_cal_states {
|
|
Q6AFECAL_UNINITIALISED,
|
|
Q6AFECAL_INITIALISED,
|
|
Q6AFECAL_RECEIVED
|
|
};
|
|
|
|
struct afe_fw_info {
|
|
struct firmware_cal *fw[Q6AFE_MAX_CAL];
|
|
DECLARE_BITMAP(cal_bit, Q6AFE_MAX_CAL);
|
|
/* for calibration tracking */
|
|
unsigned long q6afecal_state[Q6AFE_MAX_CAL];
|
|
struct mutex lock;
|
|
};
|
|
|
|
struct firmware_cal {
|
|
u8 *data;
|
|
size_t size;
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_AFE_HWDEP)
|
|
#if IS_ENABLED(CONFIG_AUDIO_QGKI)
|
|
int q6afe_cal_create_hwdep(void *fw, int node, void *card);
|
|
#else
|
|
int q6afe_cal_create_hwdep(void *fw, int node, void *card)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_AUDIO_QGKI */
|
|
struct firmware_cal *q6afecal_get_fw_cal(struct afe_fw_info *fw_data,
|
|
enum q6afe_cal_type type);
|
|
#else /* CONFIG_AFE_HWDEP */
|
|
static inline int q6afe_cal_create_hwdep(void *fw, int node, void *card)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline struct firmware_cal *q6afecal_get_fw_cal(
|
|
struct afe_fw_info *fw_data,
|
|
enum q6afe_cal_type type)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif /* CONFIG_AFE_HWDEP */
|
|
#endif /* __Q6AFECAL_HWDEP_H__ */
|