Commit 102a1b38 authored by Colin Ian King's avatar Colin Ian King Committed by Lee Jones
Browse files

backlight: qcom-wled: Fix spelling mistake "trigged" -> "triggered"



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

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarDaniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 9afa3024
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -322,7 +322,7 @@ static irqreturn_t wled_short_irq_handler(int irq, void *_wled)
		wled->short_count = 1;
		wled->short_count = 1;


	if (wled->short_count > WLED_SHORT_CNT_MAX) {
	if (wled->short_count > WLED_SHORT_CNT_MAX) {
		dev_err(wled->dev, "Short trigged %d times, disabling WLED forever!\n",
		dev_err(wled->dev, "Short triggered %d times, disabling WLED forever!\n",
			wled->short_count);
			wled->short_count);
		wled->disabled_by_short = true;
		wled->disabled_by_short = true;
		goto unlock_mutex;
		goto unlock_mutex;