Skip to content

Commit acd4946

Browse files
Colin Ian Kingbroonie
authored andcommitted
ASoC: amd: acp3x-pcm-dma: clean up two indentation issues
There are a couple of statements that are not indented correctly, add in the missing tab and break the lines to address a checkpatch warning. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent d406151 commit acd4946

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sound/soc/amd/raven/acp3x-pcm-dma.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,8 @@ static int acp3x_resume(struct device *dev)
458458
reg_val = mmACP_I2STDM_ITER;
459459
frmt_val = mmACP_I2STDM_TXFRMT;
460460
}
461-
rv_writel((rtd->xfer_resolution << 3), rtd->acp3x_base + reg_val);
461+
rv_writel((rtd->xfer_resolution << 3),
462+
rtd->acp3x_base + reg_val);
462463
}
463464
if (adata->capture_stream && adata->capture_stream->runtime) {
464465
struct i2s_stream_instance *rtd =
@@ -474,7 +475,8 @@ static int acp3x_resume(struct device *dev)
474475
reg_val = mmACP_I2STDM_IRER;
475476
frmt_val = mmACP_I2STDM_RXFRMT;
476477
}
477-
rv_writel((rtd->xfer_resolution << 3), rtd->acp3x_base + reg_val);
478+
rv_writel((rtd->xfer_resolution << 3),
479+
rtd->acp3x_base + reg_val);
478480
}
479481
if (adata->tdm_mode == TDM_ENABLE) {
480482
rv_writel(adata->tdm_fmt, adata->acp3x_base + frmt_val);

0 commit comments

Comments
 (0)