ASoC: codecs: wcd939x: Constify wcd939x_sdw_ch_info
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Wed, 12 Jun 2024 16:15:34 +0000 (18:15 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 18 Jun 2024 15:47:33 +0000 (16:47 +0100)
Driver does not modify static wcd939x_sdw_ch_info array, so it can be
made const for code safety.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://msgid.link/r/20240612-asoc-wcd9xxx-wide-cleanups-v1-21-0d15885b2a06@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/wcd939x-sdw.c
sound/soc/codecs/wcd939x.c
sound/soc/codecs/wcd939x.h

index 8acb5651c5bca84c8a57836300ddc59fa3e91289..94b1e99a3ca0ecdb16a8dd73b2b07ee54564dd50 100644 (file)
@@ -23,7 +23,7 @@
 
 #define SWRS_SCP_HOST_CLK_DIV2_CTL_BANK(m) (0xE0 + 0x10 * (m))
 
-static struct wcd939x_sdw_ch_info wcd939x_sdw_rx_ch_info[] = {
+static const struct wcd939x_sdw_ch_info wcd939x_sdw_rx_ch_info[] = {
        WCD_SDW_CH(WCD939X_HPH_L, WCD939X_HPH_PORT, BIT(0)),
        WCD_SDW_CH(WCD939X_HPH_R, WCD939X_HPH_PORT, BIT(1)),
        WCD_SDW_CH(WCD939X_CLSH, WCD939X_CLSH_PORT, BIT(0)),
@@ -36,7 +36,7 @@ static struct wcd939x_sdw_ch_info wcd939x_sdw_rx_ch_info[] = {
        WCD_SDW_CH(WCD939X_HIFI_PCM_R, WCD939X_HIFI_PCM_PORT, BIT(1)),
 };
 
-static struct wcd939x_sdw_ch_info wcd939x_sdw_tx_ch_info[] = {
+static const struct wcd939x_sdw_ch_info wcd939x_sdw_tx_ch_info[] = {
        WCD_SDW_CH(WCD939X_ADC1, WCD939X_ADC_1_4_PORT, BIT(0)),
        WCD_SDW_CH(WCD939X_ADC2, WCD939X_ADC_1_4_PORT, BIT(1)),
        WCD_SDW_CH(WCD939X_ADC3, WCD939X_ADC_1_4_PORT, BIT(2)),
index 1f94f49f98290ff03a5c4c2036957bd4e51e516e..66af035bd0e5847b52073d87b8557755d26cc33f 100644 (file)
@@ -414,7 +414,7 @@ static int wcd939x_io_init(struct snd_soc_component *component)
        return 0;
 }
 
-static int wcd939x_sdw_connect_port(struct wcd939x_sdw_ch_info *ch_info,
+static int wcd939x_sdw_connect_port(const struct wcd939x_sdw_ch_info *ch_info,
                                    struct sdw_port_config *port_config,
                                    u8 enable)
 {
index 756f497a337c0f6bf308c44b400709fca3912679..a6c9c6cee05697b6672a0a10b058da70fb276474 100644 (file)
@@ -914,7 +914,7 @@ struct wcd939x_sdw_priv {
        struct sdw_stream_config sconfig;
        struct sdw_stream_runtime *sruntime;
        struct sdw_port_config port_config[WCD939X_MAX_SWR_PORTS];
-       struct wcd939x_sdw_ch_info *ch_info;
+       const struct wcd939x_sdw_ch_info *ch_info;
        bool port_enable[WCD939X_MAX_SWR_CH_IDS];
        int active_ports;
        int num_ports;