Commit a2dc5091 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Chanwoo Choi

extcon: max8997: Fix lack of path setting in USB device mode

MAX8997 driver disables automatic path selection from MicroUSB connector
and manually sets path to either UART or USB lines. However the code for
setting USB path worked only for USB host mode (when ID pin is set
to ground). When standard USB cable (USB device mode) is connected, path
registers are not touched. This means that once the non-USB accessory is
connected to MAX8997-operated micro USB port, the path is no longer set
to USB and USB device mode doesn't work. This patch fixes it by setting
USB path both for USB and USB host modes.
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 3e34c819
...@@ -311,12 +311,10 @@ static int max8997_muic_handle_usb(struct max8997_muic_info *info, ...@@ -311,12 +311,10 @@ static int max8997_muic_handle_usb(struct max8997_muic_info *info,
{ {
int ret = 0; int ret = 0;
if (usb_type == MAX8997_USB_HOST) { ret = max8997_muic_set_path(info, info->path_usb, attached);
ret = max8997_muic_set_path(info, info->path_usb, attached); if (ret < 0) {
if (ret < 0) { dev_err(info->dev, "failed to update muic register\n");
dev_err(info->dev, "failed to update muic register\n"); return ret;
return ret;
}
} }
switch (usb_type) { switch (usb_type) {
......
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