summaryrefslogtreecommitdiff
path: root/drivers/extcon/extcon-max77693.c
diff options
context:
space:
mode:
authorDmitry Kasatkin <d.kasatkin@samsung.com>2014-01-10 20:04:42 +0900
committerChanho Park <chanho61.park@samsung.com>2014-03-20 17:42:40 +0900
commit8b905f3030d65cc02e8ccd0d0c4660805036ce2c (patch)
tree944d2f06981a96ee9198a930acf88f0a0b3d8d65 /drivers/extcon/extcon-max77693.c
parent67cc9344d6b01c6e083902a84c446cea5891ec4f (diff)
downloadlinux-3.10-8b905f3030d65cc02e8ccd0d0c4660805036ce2c.tar.gz
linux-3.10-8b905f3030d65cc02e8ccd0d0c4660805036ce2c.tar.bz2
linux-3.10-8b905f3030d65cc02e8ccd0d0c4660805036ce2c.zip
extcon: max77693: Differentiate info message for easier debugging
Change-Id: Ie02b0c71100815601e40391c67cb176dca67e683 Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com> Signed-off-by: Jonghwa Lee <jonghwa3.lee@samsung.com> [Author information corrected] Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
Diffstat (limited to 'drivers/extcon/extcon-max77693.c')
-rw-r--r--drivers/extcon/extcon-max77693.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/extcon/extcon-max77693.c b/drivers/extcon/extcon-max77693.c
index eda131c19f5..3cde41b4a9e 100644
--- a/drivers/extcon/extcon-max77693.c
+++ b/drivers/extcon/extcon-max77693.c
@@ -488,7 +488,7 @@ static int max77693_muic_dock_handler(struct max77693_muic_info *info,
char dock_name[CABLE_NAME_MAX];
dev_info(info->dev,
- "external connector is %s (adc:0x%02x)\n",
+ "external connector (doc) is %s (adc:0x%02x)\n",
attached ? "attached" : "detached", cable_type);
switch (cable_type) {
@@ -651,7 +651,7 @@ static int max77693_muic_jig_handler(struct max77693_muic_info *info,
u8 path = CONTROL1_SW_OPEN;
dev_info(info->dev,
- "external connector is %s (adc:0x%02x)\n",
+ "external connector (jig) is %s (adc:0x%02x)\n",
attached ? "attached" : "detached", cable_type);
switch (cable_type) {
@@ -697,7 +697,7 @@ static int max77693_muic_adc_handler(struct max77693_muic_info *info)
MAX77693_CABLE_GROUP_ADC, &attached);
dev_info(info->dev,
- "external connector is %s (adc:0x%02x, prev_adc:0x%x)\n",
+ "external connector (adc) is %s (adc:0x%02x, prev_adc:0x%x)\n",
attached ? "attached" : "detached", cable_type,
info->prev_cable_type);
@@ -806,7 +806,7 @@ static int max77693_muic_chg_handler(struct max77693_muic_info *info)
MAX77693_CABLE_GROUP_CHG, &attached);
dev_info(info->dev,
- "external connector is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
+ "external connector (chg) is %s(chg_type:0x%x, prev_chg_type:0x%x)\n",
attached ? "attached" : "detached",
chg_type, info->prev_chg_type);