mirror of https://gitee.com/openkylin/linux.git
sound/soc/intel: Fix spelling mistake "cant" --> "can't"
There is some spelling mistakes in a dev_err message. Fix it. Signed-off-by: Youling Tang <tangyouling@loongson.cn> Link: https://lore.kernel.org/r/1597299157-32221-1-git-send-email-tangyouling@loongson.cn Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
85131d9489
commit
ade5376dff
|
@ -130,7 +130,7 @@ static void block_list_remove(struct sst_dsp *dsp,
|
|||
err = block->ops->disable(block);
|
||||
if (err < 0)
|
||||
dev_err(dsp->dev,
|
||||
"error: cant disable block %d:%d\n",
|
||||
"error: can't disable block %d:%d\n",
|
||||
block->type, block->index);
|
||||
}
|
||||
}
|
||||
|
@ -158,7 +158,7 @@ static int block_list_prepare(struct sst_dsp *dsp,
|
|||
ret = block->ops->enable(block);
|
||||
if (ret < 0) {
|
||||
dev_err(dsp->dev,
|
||||
"error: cant disable block %d:%d\n",
|
||||
"error: can't disable block %d:%d\n",
|
||||
block->type, block->index);
|
||||
goto err;
|
||||
}
|
||||
|
|
|
@ -1507,7 +1507,7 @@ static int sst_hsw_dx_state_dump(struct sst_hsw *hsw)
|
|||
|
||||
ret = sst_dsp_dma_get_channel(sst, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret);
|
||||
dev_err(hsw->dev, "error: can't allocate dma channel %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -1587,7 +1587,7 @@ int sst_hsw_dsp_load(struct sst_hsw *hsw)
|
|||
|
||||
ret = sst_dsp_dma_get_channel(dsp, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret);
|
||||
dev_err(hsw->dev, "error: can't allocate dma channel %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -1616,7 +1616,7 @@ static int sst_hsw_dsp_restore(struct sst_hsw *hsw)
|
|||
|
||||
ret = sst_dsp_dma_get_channel(dsp, 0);
|
||||
if (ret < 0) {
|
||||
dev_err(hsw->dev, "error: cant allocate dma channel %d\n", ret);
|
||||
dev_err(hsw->dev, "error: can't allocate dma channel %d\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue