From patchwork Tue Jun 20 13:35:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wen-chien Jesse Sung X-Patchwork-Id: 778324 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) by ozlabs.org (Postfix) with ESMTP id 3wsTPb4CZTz9s2G; Tue, 20 Jun 2017 23:35:47 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.76) (envelope-from ) id 1dNJJo-0001e9-Sr; Tue, 20 Jun 2017 13:35:44 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1dNJJW-0001VF-Ov for kernel-team@lists.ubuntu.com; Tue, 20 Jun 2017 13:35:26 +0000 Received: from 1.general.jesse.uk.vpn ([10.172.197.96] helo=cola.voip.idv.tw) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.76) (envelope-from ) id 1dNJJV-00006b-Ut; Tue, 20 Jun 2017 13:35:26 +0000 From: Wen-chien Jesse Sung To: kernel-team@lists.ubuntu.com Subject: [linux-joule][PATCH 3/9] extcon: arizona: Change the arzona extcon driver alias Date: Tue, 20 Jun 2017 21:35:10 +0800 Message-Id: <1497965716-31326-3-git-send-email-jesse.sung@canonical.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1497965716-31326-1-git-send-email-jesse.sung@canonical.com> References: <1497965716-31326-1-git-send-email-jesse.sung@canonical.com> X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.14 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: kernel-team-bounces@lists.ubuntu.com From: Jukka Laitinen BugLink: https://launchpad.net/bugs/1698051 Change the module alias name to platform:arizona-extcon to match what is requested from arizona-core, so that the extcon driver gets probed automatically. Signed-off-by: Jukka Laitinen Signed-off-by: Wen-chien Jesse Sung --- drivers/extcon/extcon-arizona.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/extcon/extcon-arizona.c b/drivers/extcon/extcon-arizona.c index a078cdb..026c57d 100644 --- a/drivers/extcon/extcon-arizona.c +++ b/drivers/extcon/extcon-arizona.c @@ -1663,4 +1663,4 @@ module_platform_driver(arizona_extcon_driver); MODULE_DESCRIPTION("Arizona Extcon driver"); MODULE_AUTHOR("Mark Brown "); MODULE_LICENSE("GPL"); -MODULE_ALIAS("platform:extcon-arizona"); +MODULE_ALIAS("platform:arizona-extcon");