Commit 275d57ae authored by Chen Ni's avatar Chen Ni Committed by Mark Brown

ASoC: cs42l42: Convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Fixes: 90f6a2a2 ("ASoC: cs42l42: Add SoundWire support")
Signed-off-by: default avatarChen Ni <nichen@iscas.ac.cn>
Reviewed-by: default avatarRichard Fitzgerald <rf@opensource.cirrus.com>
Reviewed-by: default avatarDragan Simic <dsimic@manjaro.org>
Link: https://patch.msgid.link/20240716025307.400156-1-nichen@iscas.ac.cnSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent d57ef033
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment