1
0
Fork 0

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

Trivial fix to spelling mistake in dev_err error message text.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
hifive-unleashed-5.1
Colin Ian King 2018-03-16 14:33:01 +00:00 committed by Sebastian Reichel
parent 2d8236d175
commit 852041d1ce
1 changed files with 2 additions and 2 deletions

View File

@ -495,7 +495,7 @@ static void ssip_rx_wd(struct timer_list *t)
struct ssi_protocol *ssi = from_timer(ssi, t, rx_wd);
struct hsi_client *cl = ssi->cl;
dev_err(&cl->device, "Watchdog trigerred\n");
dev_err(&cl->device, "Watchdog triggered\n");
ssip_error(cl);
}
@ -504,7 +504,7 @@ static void ssip_tx_wd(struct timer_list *t)
struct ssi_protocol *ssi = from_timer(ssi, t, tx_wd);
struct hsi_client *cl = ssi->cl;
dev_err(&cl->device, "Watchdog trigerred\n");
dev_err(&cl->device, "Watchdog triggered\n");
ssip_error(cl);
}