1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef LPASS_CDC_WSA_MACRO_H
- #define LPASS_CDC_WSA_MACRO_H
- enum {
- LPASS_CDC_WSA_MACRO_SPKR_MODE_DEFAULT,
- LPASS_CDC_WSA_MACRO_SPKR_MODE_1,
- };
- enum {
- LPASS_CDC_WSA_MACRO_GAIN_OFFSET_M1P5_DB,
- LPASS_CDC_WSA_MACRO_GAIN_OFFSET_0_DB,
- };
- #if IS_ENABLED(CONFIG_WSA_MACRO)
- extern int lpass_cdc_wsa_macro_set_spkr_mode(struct snd_soc_component *component,
- int mode);
- extern int lpass_cdc_wsa_macro_set_spkr_gain_offset(struct snd_soc_component *component,
- int offset);
- #else
- static inline int lpass_cdc_wsa_macro_set_spkr_mode(struct snd_soc_component *component,
- int mode)
- {
- return 0;
- }
- static inline int lpass_cdc_wsa_macro_set_spkr_gain_offset(
- struct snd_soc_component *component,
- int offset)
- {
- return 0;
- }
- #endif
- #endif
|