Skip to content

Commit

Permalink
ASoC: ti: Fix spelling mistake "cant" -> "can't"
Browse files Browse the repository at this point in the history
There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@gmail.com>
Link: https://lore.kernel.org/r/20220315230816.2964577-1-colin.i.king@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Colin Ian King authored and Mark Brown committed Mar 16, 2022
1 parent 28a265a commit e8ca4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/ti/omap-dmic.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ static int asoc_dmic_probe(struct platform_device *pdev)

dmic->fclk = devm_clk_get(dmic->dev, "fck");
if (IS_ERR(dmic->fclk)) {
dev_err(dmic->dev, "cant get fck\n");
dev_err(dmic->dev, "can't get fck\n");
return -ENODEV;
}

Expand Down

0 comments on commit e8ca4ce

Please sign in to comment.