From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAF54C433DB for ; Tue, 29 Dec 2020 12:12:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B37472078D for ; Tue, 29 Dec 2020 12:12:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726551AbgL2MLt (ORCPT ); Tue, 29 Dec 2020 07:11:49 -0500 Received: from mx0b-001ae601.pphosted.com ([67.231.152.168]:50292 "EHLO mx0b-001ae601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726026AbgL2MLs (ORCPT ); Tue, 29 Dec 2020 07:11:48 -0500 Received: from pps.filterd (m0077474.ppops.net [127.0.0.1]) by mx0b-001ae601.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 0BTC6nVb021289; Tue, 29 Dec 2020 06:10:54 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cirrus.com; h=date : from : to : cc : subject : message-id : references : mime-version : content-type : in-reply-to; s=PODMain02222019; bh=G3RhyOqYKeJ12W4kCKKJnAcSIx/S3lz1LSodUfX/I40=; b=glS7yrIp3OObsMC5Xg2kxomvN1LLi+tK1lNyoTH5MyJDCSIY7Eh2+++KBNJj029sYhj8 BQRBg0ah84YYARj0DGFi8Qz53xhuhhJEAsrpgiNk2cIMPxBkcoCJQdfqliD/GyRGZMX7 gmp7RWXwVIPRGcyggcjK5PRmgfKXgbeyORNKpwjiKt7RfRNx212Zv3VXGWXhx6n+qy0u /A5j15crgU2EAtJSiSzdt5/MmKdmfgFouHwXkxWoqw4TnJueOj1tZWmb3n17h9TxjQFb k9POlPm9JiKAUAmxXdPTbzY4vkzWiWcMygdORuiVhy6l/y89oSbhz6ruFNVuLtoYJwT8 WA== Received: from ediex02.ad.cirrus.com ([87.246.76.36]) by mx0b-001ae601.pphosted.com with ESMTP id 35p2fs2acr-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Tue, 29 Dec 2020 06:10:54 -0600 Received: from EDIEX01.ad.cirrus.com (198.61.84.80) by EDIEX02.ad.cirrus.com (198.61.84.81) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1913.5; Tue, 29 Dec 2020 12:10:52 +0000 Received: from ediswmail.ad.cirrus.com (198.61.86.93) by EDIEX01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server id 15.1.1913.5 via Frontend Transport; Tue, 29 Dec 2020 12:10:52 +0000 Received: from ediswmail.ad.cirrus.com (ediswmail.ad.cirrus.com [198.61.86.93]) by ediswmail.ad.cirrus.com (Postfix) with ESMTP id BB57011CB; Tue, 29 Dec 2020 12:10:52 +0000 (UTC) Date: Tue, 29 Dec 2020 12:10:52 +0000 From: Charles Keepax To: Hans de Goede CC: Lee Jones , MyungJoo Ham , Chanwoo Choi , Cezary Rojewski , Pierre-Louis Bossart , Liam Girdwood , Jie Yang , Mark Brown , , , Subject: Re: [PATCH 07/14] extcon: arizona: Fix modalias Message-ID: <20201229121052.GK9673@ediswmail.ad.cirrus.com> References: <20201227211232.117801-1-hdegoede@redhat.com> <20201227211232.117801-8-hdegoede@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20201227211232.117801-8-hdegoede@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 adultscore=0 impostorscore=0 mlxscore=0 suspectscore=0 lowpriorityscore=0 priorityscore=1501 malwarescore=0 clxscore=1015 mlxlogscore=948 spamscore=0 bulkscore=0 phishscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2009150000 definitions=main-2012290077 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Dec 27, 2020 at 10:12:25PM +0100, Hans de Goede wrote: > Fix the modalias so that the driver will be loaded automatically. The > module's name is "extcon-arizona", following other extcon module-names. > > But the driver's and platform-device's name is "arizona-extcon" and the > modalias must match that. > > Signed-off-by: Hans de Goede > --- Acked-by: Charles Keepax Thanks, Charles