aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2023-02-07 09:14:43 +0000
committerPrashant Malani <[email protected]>2023-02-08 18:21:03 +0000
commitb0d8a67715dae445c065c83a40a581d6563a341f (patch)
treeb8c96c0148ffa3f6337d3ffcf5ef809ae89c55d1
parentf54c013e7eef2962e610c9223e13659e65dfb550 (diff)
platform/chrome: cros_ec_typec: Fix spelling mistake
There is a spelling mistake in a dev_warn message, make it lower case and fix the spelling. Signed-off-by: Colin Ian King <[email protected]> Reviewed-by: Tzung-Bi Shih <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Prashant Malani <[email protected]> [pmalani fixed up commit message based on tzungbi comment]
-rw-r--r--drivers/platform/chrome/cros_ec_typec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
index 71f5d7d8e055..a673c3342470 100644
--- a/drivers/platform/chrome/cros_ec_typec.c
+++ b/drivers/platform/chrome/cros_ec_typec.c
@@ -1020,7 +1020,7 @@ static void cros_typec_handle_status(struct cros_typec_data *typec, int port_num
cros_typec_handle_vdm_attention(typec, port_num);
ret = cros_typec_send_clear_event(typec, port_num, PD_STATUS_EVENT_VDM_ATTENTION);
if (ret < 0)
- dev_warn(typec->dev, "Failed VDM Attenetion event clear, port: %d\n",
+ dev_warn(typec->dev, "Failed VDM attention event clear, port: %d\n",
port_num);
}
}