]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: cs42l42: Convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Tue, 16 Jul 2024 02:53:07 +0000 (10:53 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 29 Jul 2024 00:18:44 +0000 (01:18 +0100)
Replace a comma between expression statements by a semicolon.

Fixes: 90f6a2a20bd2 ("ASoC: cs42l42: Add SoundWire support")
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Reviewed-by: Dragan Simic <dsimic@manjaro.org>
Link: https://patch.msgid.link/20240716025307.400156-1-nichen@iscas.ac.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs42l42-sdw.c

index 94a66a325303b673e30565192ea5af18353ac1b9..29891c1f6bece53c8df0d5c025b2cfbe5a31be19 100644 (file)
@@ -323,15 +323,15 @@ static int cs42l42_sdw_read_prop(struct sdw_slave *peripheral)
        prop->scp_int1_mask = SDW_SCP_INT1_BUS_CLASH | SDW_SCP_INT1_PARITY;
 
        /* DP1 - capture */
-       ports[0].num = CS42L42_SDW_CAPTURE_PORT,
-       ports[0].type = SDW_DPN_FULL,
-       ports[0].ch_prep_timeout = 10,
+       ports[0].num = CS42L42_SDW_CAPTURE_PORT;
+       ports[0].type = SDW_DPN_FULL;
+       ports[0].ch_prep_timeout = 10;
        prop->src_dpn_prop = &ports[0];
 
        /* DP2 - playback */
-       ports[1].num = CS42L42_SDW_PLAYBACK_PORT,
-       ports[1].type = SDW_DPN_FULL,
-       ports[1].ch_prep_timeout = 10,
+       ports[1].num = CS42L42_SDW_PLAYBACK_PORT;
+       ports[1].type = SDW_DPN_FULL;
+       ports[1].ch_prep_timeout = 10;
        prop->sink_dpn_prop = &ports[1];
 
        return 0;