diff options
| author | Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com> | 2026-01-08 17:44:19 +0200 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-01-08 17:31:24 +0000 |
| commit | 0cd9bf6a6d9a1861087236cc5c275b3bea83cfdd (patch) | |
| tree | 470b950b95204e7160d040e0d70c4bc2ebfa4dca | |
| parent | 22a4776a9ce50aa47f602d28f53ba9d613a38f49 (diff) | |
| download | lwn-0cd9bf6a6d9a1861087236cc5c275b3bea83cfdd.tar.gz lwn-0cd9bf6a6d9a1861087236cc5c275b3bea83cfdd.zip | |
ASoC: codecs: da7213: Move comma operator at the end of the line
Move the comma operator to the end of the line to comply with the
coding style.
Signed-off-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>
Link: https://patch.msgid.link/20260108154419.3580562-1-claudiu.beznea.uj@bp.renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/codecs/da7213.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/da7213.c b/sound/soc/codecs/da7213.c index 0a2b50cdea95..19f69a523f22 100644 --- a/sound/soc/codecs/da7213.c +++ b/sound/soc/codecs/da7213.c @@ -79,8 +79,8 @@ static const char * const da7213_audio_hpf_corner_txt[] = { }; static SOC_ENUM_SINGLE_DECL(da7213_dac_audio_hpf_corner, - DA7213_DAC_FILTERS1 - , DA7213_AUDIO_HPF_CORNER_SHIFT, + DA7213_DAC_FILTERS1, + DA7213_AUDIO_HPF_CORNER_SHIFT, da7213_audio_hpf_corner_txt); static SOC_ENUM_SINGLE_DECL(da7213_adc_audio_hpf_corner, |
