Commit 852041d1 authored by Colin Ian King's avatar Colin Ian King Committed by Sebastian Reichel

HSI: ssi_protocol: fix spelling mistake: "trigerred" -> "triggered"

Trivial fix to spelling mistake in dev_err error message text.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.co.uk>
parent 2d8236d1
...@@ -495,7 +495,7 @@ static void ssip_rx_wd(struct timer_list *t) ...@@ -495,7 +495,7 @@ static void ssip_rx_wd(struct timer_list *t)
struct ssi_protocol *ssi = from_timer(ssi, t, rx_wd); struct ssi_protocol *ssi = from_timer(ssi, t, rx_wd);
struct hsi_client *cl = ssi->cl; struct hsi_client *cl = ssi->cl;
dev_err(&cl->device, "Watchdog trigerred\n"); dev_err(&cl->device, "Watchdog triggered\n");
ssip_error(cl); ssip_error(cl);
} }
...@@ -504,7 +504,7 @@ static void ssip_tx_wd(struct timer_list *t) ...@@ -504,7 +504,7 @@ static void ssip_tx_wd(struct timer_list *t)
struct ssi_protocol *ssi = from_timer(ssi, t, tx_wd); struct ssi_protocol *ssi = from_timer(ssi, t, tx_wd);
struct hsi_client *cl = ssi->cl; struct hsi_client *cl = ssi->cl;
dev_err(&cl->device, "Watchdog trigerred\n"); dev_err(&cl->device, "Watchdog triggered\n");
ssip_error(cl); ssip_error(cl);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment