diff mbox series

[next] spi: Fix spelling mistake "softwade" -> "software"

Message ID 20210317093936.5572-1-colin.king@canonical.com (mailing list archive)
State Accepted
Commit 9d902c2a9a258e1e17cfcce7ea558b1c427b2757
Headers show
Series [next] spi: Fix spelling mistake "softwade" -> "software" | expand

Commit Message

Colin King March 17, 2021, 9:39 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/spi/spi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mark Brown March 17, 2021, 1:41 p.m. UTC | #1
On Wed, 17 Mar 2021 09:39:36 +0000, Colin King wrote:
> There is a spelling mistake in a dev_err message. Fix it.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: Fix spelling mistake "softwade" -> "software"
      commit: 9d902c2a9a258e1e17cfcce7ea558b1c427b2757

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 0706832bffda..2fe3c3a50866 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -679,7 +679,7 @@  struct spi_device *spi_new_device(struct spi_controller *ctlr,
 	if (chip->swnode) {
 		status = device_add_software_node(&proxy->dev, chip->swnode);
 		if (status) {
-			dev_err(&ctlr->dev, "failed to add softwade node to '%s': %d\n",
+			dev_err(&ctlr->dev, "failed to add software node to '%s': %d\n",
 				chip->modalias, status);
 			goto err_dev_put;
 		}