crypto: atmel - fix typo in dev_err error message
Fix typo, "intialization" -> "initialization" Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Родитель
44cac4fce9
Коммит
be20835676
|
@ -1374,7 +1374,7 @@ static int atmel_aes_probe(struct platform_device *pdev)
|
|||
/* Initializing the clock */
|
||||
aes_dd->iclk = clk_get(&pdev->dev, "aes_clk");
|
||||
if (IS_ERR(aes_dd->iclk)) {
|
||||
dev_err(dev, "clock intialization failed.\n");
|
||||
dev_err(dev, "clock initialization failed.\n");
|
||||
err = PTR_ERR(aes_dd->iclk);
|
||||
goto clk_err;
|
||||
}
|
||||
|
|
|
@ -1385,7 +1385,7 @@ static int atmel_sha_probe(struct platform_device *pdev)
|
|||
/* Initializing the clock */
|
||||
sha_dd->iclk = clk_get(&pdev->dev, "sha_clk");
|
||||
if (IS_ERR(sha_dd->iclk)) {
|
||||
dev_err(dev, "clock intialization failed.\n");
|
||||
dev_err(dev, "clock initialization failed.\n");
|
||||
err = PTR_ERR(sha_dd->iclk);
|
||||
goto clk_err;
|
||||
}
|
||||
|
|
|
@ -1408,7 +1408,7 @@ static int atmel_tdes_probe(struct platform_device *pdev)
|
|||
/* Initializing the clock */
|
||||
tdes_dd->iclk = clk_get(&pdev->dev, "tdes_clk");
|
||||
if (IS_ERR(tdes_dd->iclk)) {
|
||||
dev_err(dev, "clock intialization failed.\n");
|
||||
dev_err(dev, "clock initialization failed.\n");
|
||||
err = PTR_ERR(tdes_dd->iclk);
|
||||
goto clk_err;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче