Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1464696

[PATCH] extcon: axp288: fix spelling mistake: "connecetd" -> "connected"

From Colin King <colin.king@canonical.com>
Newsgroups linux.kernel
Subject [PATCH] extcon: axp288: fix spelling mistake: "connecetd" -> "connected"
Date 2016-08-17 20:10 +0200
Message-ID <s7drP-4Al-15@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Colin Ian King <colin.king@canonical.com>

trivial fix to spelling mistake in dev_dbg messages

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/extcon/extcon-axp288.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/extcon/extcon-axp288.c b/drivers/extcon/extcon-axp288.c
index fd55c2f..04610f8 100644
--- a/drivers/extcon/extcon-axp288.c
+++ b/drivers/extcon/extcon-axp288.c
@@ -189,19 +189,19 @@ static int axp288_handle_chrg_det_event(struct axp288_extcon_info *info)
 
 	switch (chrg_type) {
 	case DET_STAT_SDP:
-		dev_dbg(info->dev, "sdp cable is connecetd\n");
+		dev_dbg(info->dev, "sdp cable is connected\n");
 		notify_otg = true;
 		notify_charger = true;
 		cable = EXTCON_CHG_USB_SDP;
 		break;
 	case DET_STAT_CDP:
-		dev_dbg(info->dev, "cdp cable is connecetd\n");
+		dev_dbg(info->dev, "cdp cable is connected\n");
 		notify_otg = true;
 		notify_charger = true;
 		cable = EXTCON_CHG_USB_CDP;
 		break;
 	case DET_STAT_DCP:
-		dev_dbg(info->dev, "dcp cable is connecetd\n");
+		dev_dbg(info->dev, "dcp cable is connected\n");
 		notify_charger = true;
 		cable = EXTCON_CHG_USB_DCP;
 		break;
-- 
2.9.3

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] extcon: axp288: fix spelling mistake: "connecetd" -> "connected" Colin King <colin.king@canonical.com> - 2016-08-17 20:10 +0200
  Re: [PATCH] extcon: axp288: fix spelling mistake: "connecetd" ->  "connected" Chanwoo Choi <cw00.choi@samsung.com> - 2016-08-18 02:50 +0200

csiph-web