summaryrefslogtreecommitdiffstats
path: root/drivers/extcon/extcon-axp288.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-08-17 14:02:35 -0400
committerChanwoo Choi <cw00.choi@samsung.com>2016-09-12 22:26:26 -0400
commit525867dbd11899835a029da3532eeee9f773db31 (patch)
tree63c0f9d950a3463b87ad7a7af1c30c0b237d3e93 /drivers/extcon/extcon-axp288.c
parente5b07e555b02da6a171d8c4c670c4da0f219abde (diff)
extcon: axp288: Fix spelling mistake
This patch fixes the spelling mistake in dev_dbg messages. Signed-off-by: Colin Ian King <colin.king@canonical.com> [cw00.choi: Modify the patch title/description] Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-axp288.c')
-rw-r--r--drivers/extcon/extcon-axp288.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/extcon/extcon-axp288.c b/drivers/extcon/extcon-axp288.c
index fd55c2f2080a..04610f851437 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)
189 189
190 switch (chrg_type) { 190 switch (chrg_type) {
191 case DET_STAT_SDP: 191 case DET_STAT_SDP:
192 dev_dbg(info->dev, "sdp cable is connecetd\n"); 192 dev_dbg(info->dev, "sdp cable is connected\n");
193 notify_otg = true; 193 notify_otg = true;
194 notify_charger = true; 194 notify_charger = true;
195 cable = EXTCON_CHG_USB_SDP; 195 cable = EXTCON_CHG_USB_SDP;
196 break; 196 break;
197 case DET_STAT_CDP: 197 case DET_STAT_CDP:
198 dev_dbg(info->dev, "cdp cable is connecetd\n"); 198 dev_dbg(info->dev, "cdp cable is connected\n");
199 notify_otg = true; 199 notify_otg = true;
200 notify_charger = true; 200 notify_charger = true;
201 cable = EXTCON_CHG_USB_CDP; 201 cable = EXTCON_CHG_USB_CDP;
202 break; 202 break;
203 case DET_STAT_DCP: 203 case DET_STAT_DCP:
204 dev_dbg(info->dev, "dcp cable is connecetd\n"); 204 dev_dbg(info->dev, "dcp cable is connected\n");
205 notify_charger = true; 205 notify_charger = true;
206 cable = EXTCON_CHG_USB_DCP; 206 cable = EXTCON_CHG_USB_DCP;
207 break; 207 break;