Commit ca90a64d authored by Hans de Goede's avatar Hans de Goede Committed by Chanwoo Choi

extcon: axp288: Handle reserved charger-type values better

According to the data sheets all the values not handled in the
switch-case are "reserved". Update the dev_warn message to reflect
this and set the cable-type to EXTCON_CHG_USB_SDP (so max 500mA
current draw) as safe default.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 60ed9996
...@@ -205,8 +205,8 @@ static int axp288_handle_chrg_det_event(struct axp288_extcon_info *info) ...@@ -205,8 +205,8 @@ static int axp288_handle_chrg_det_event(struct axp288_extcon_info *info)
cable = EXTCON_CHG_USB_DCP; cable = EXTCON_CHG_USB_DCP;
break; break;
default: default:
dev_warn(info->dev, dev_warn(info->dev, "unknown (reserved) bc detect result\n");
"disconnect or unknown or ID event\n"); cable = EXTCON_CHG_USB_SDP;
} }
no_vbus: no_vbus:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment