From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161292AbdAFUlX (ORCPT ); Fri, 6 Jan 2017 15:41:23 -0500 Received: from mail.kernel.org ([198.145.29.136]:44696 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760548AbdAFUkx (ORCPT ); Fri, 6 Jan 2017 15:40:53 -0500 From: chanwoo@kernel.org To: linux-kernel@vger.kernel.org Cc: cw00.choi@samsung.com, myungjoo.ham@samsung.com Subject: [PATCH 2/2] extcon: Modify the name of EXTCON_USB_HOST connector Date: Sat, 7 Jan 2017 05:40:40 +0900 Message-Id: <1483735240-32362-2-git-send-email-chanwoo@kernel.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1483735240-32362-1-git-send-email-chanwoo@kernel.org> References: <1483735240-32362-1-git-send-email-chanwoo@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Chanwoo Choi This patch renames the EXTCON_USB_HOST by using '-' char because the name of all external connector use the '-' char instead of '_' char. - "USB_HOST" -> "USB-HOST" Signed-off-by: Chanwoo Choi --- drivers/extcon/extcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c index 768e367..09ac5e7 100644 --- a/drivers/extcon/extcon.c +++ b/drivers/extcon/extcon.c @@ -60,7 +60,7 @@ struct __extcon_info { [EXTCON_USB_HOST] = { .type = EXTCON_TYPE_USB, .id = EXTCON_USB_HOST, - .name = "USB_HOST", + .name = "USB-HOST", }, /* Charging external connector */ -- 1.9.1