Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

extcon: max77693: Fix cable name of MHL-TA

This patch fixes extcon cable name of MHL-TA instead of MHL_TA
to unify cable name style.

Signed-off-by: Jaewon Kim <jaewon02.kim@samsung.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>

authored by

Jaewon Kim and committed by
Chanwoo Choi
4f0be26a c517d838

+6 -6
+6 -6
drivers/extcon/extcon-max77693.c
··· 228 228 [EXTCON_CABLE_SLOW_CHARGER] = "Slow-charger", 229 229 [EXTCON_CABLE_CHARGE_DOWNSTREAM] = "Charge-downstream", 230 230 [EXTCON_CABLE_MHL] = "MHL", 231 - [EXTCON_CABLE_MHL_TA] = "MHL_TA", 231 + [EXTCON_CABLE_MHL_TA] = "MHL-TA", 232 232 [EXTCON_CABLE_JIG_USB_ON] = "JIG-USB-ON", 233 233 [EXTCON_CABLE_JIG_USB_OFF] = "JIG-USB-OFF", 234 234 [EXTCON_CABLE_JIG_UART_OFF] = "JIG-UART-OFF", ··· 823 823 case MAX77693_MUIC_GND_MHL: 824 824 case MAX77693_MUIC_GND_MHL_VB: 825 825 /* 826 - * MHL cable with MHL_TA(USB/TA) cable 826 + * MHL cable with MHL-TA(USB/TA) cable 827 827 * - MHL cable include two port(HDMI line and separate 828 828 * micro-usb port. When the target connect MHL cable, 829 - * extcon driver check whether MHL_TA(USB/TA) cable is 830 - * connected. If MHL_TA cable is connected, extcon 829 + * extcon driver check whether MHL-TA(USB/TA) cable is 830 + * connected. If MHL-TA cable is connected, extcon 831 831 * driver notify state to notifiee for charging battery. 832 832 * 833 - * Features of 'MHL_TA(USB/TA) with MHL cable' 833 + * Features of 'MHL-TA(USB/TA) with MHL cable' 834 834 * - Support MHL 835 835 * - Support charging through micro-usb port without 836 836 * data connection 837 837 */ 838 - extcon_set_cable_state(info->edev, "MHL_TA", attached); 838 + extcon_set_cable_state(info->edev, "MHL-TA", attached); 839 839 if (!cable_attached) 840 840 extcon_set_cable_state(info->edev, 841 841 "MHL", cable_attached);