mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 23:21:31 +00:00
i2c: tegra: change phrasing, "fallbacking" to "falling back"
The phrasing in two dev_err messages is using fallbacking which os less understandable than "falling back", so fix this up. Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
8a6d508a80
commit
bb0e9b1d2a
@ -452,7 +452,7 @@ err_out:
|
||||
tegra_i2c_release_dma(i2c_dev);
|
||||
if (err != -EPROBE_DEFER) {
|
||||
dev_err(i2c_dev->dev, "cannot use DMA: %d\n", err);
|
||||
dev_err(i2c_dev->dev, "fallbacking to PIO\n");
|
||||
dev_err(i2c_dev->dev, "falling back to PIO\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -965,7 +965,7 @@ static void tegra_i2c_config_fifo_trig(struct tegra_i2c_dev *i2c_dev,
|
||||
if (ret < 0) {
|
||||
dev_err(i2c_dev->dev, "DMA slave config failed: %d\n",
|
||||
ret);
|
||||
dev_err(i2c_dev->dev, "fallbacking to PIO\n");
|
||||
dev_err(i2c_dev->dev, "falling back to PIO\n");
|
||||
tegra_i2c_release_dma(i2c_dev);
|
||||
i2c_dev->is_curr_dma_xfer = false;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user