12 Jul
2017
12 Jul
'17
5:37 p.m.
On Wed, 12 Jul 2017 17:18:43 +0200, Sebastian Reichel wrote:
+/* Capture Gain Control: 0dB to 31dB in 1dB steps */ +static DECLARE_TLV_DB_SCALE(mic_gain_tlv, 0, 100, 0);
+/* Playback Gain Control: -33dB to 12dB in 3dB steps */ +static DECLARE_TLV_DB_SCALE(vol_tlv, -3300, 300, 0);
Better to set const for TLV declarations here...
+static const char * const cpcap_phase_invert_texts[] = {
- "Non Inverted", "Inverted"
+}; +static const SOC_ENUM_SINGLE_DECL(cpcap_hifi_l_phase_inv_enum,
- CPCAP_REG_RXSDOA, CPCAP_BIT_MONO_DAC0, cpcap_phase_invert_texts);
+static const SOC_ENUM_SINGLE_DECL(cpcap_ext_l_phase_inv_enum,
- CPCAP_REG_RXEPOA, CPCAP_BIT_MONO_EXT0, cpcap_phase_invert_texts);
... while SOC_ENUM_*_DECL() already contain const, so you should omit const here.
thanks,
Takashi