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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4234EE81E07 for ; Fri, 6 Oct 2023 15:15:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232694AbjJFPPI (ORCPT ); Fri, 6 Oct 2023 11:15:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47234 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232755AbjJFPPG (ORCPT ); Fri, 6 Oct 2023 11:15:06 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ECA04DB for ; Fri, 6 Oct 2023 08:15:04 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C6EABC433C7; Fri, 6 Oct 2023 15:15:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696605304; bh=TS2KSpELxN2o4osPlpSr8gudvaRdRIHPG6kMA5e7n4M=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=vGki2345TOJlMVBvIKwuQI98Wo7ipH7r6becgGbL2D31sx8582WicsnaPLvY8WVrE vcgOh5AsDswteKmdvHcMN/CodAGRtD8JKidrMM3DPj+duEGHuYNJUszg8ixYttD0KV jANcKtOjW8StTWJDmGjJuuxbn1NoAOIgYLaT4bJPGhcM7PSq4vJ+R4exxz5vXUrVuU B9uBl7/x79BPfPonL1VvuxdptQZQJzBB3qp7e9gu9k4jwFo254V4iIKyL4twnaeB7r yr2QAtepoKKfjvFsYqV7vgURvf2uxgTmPw1HII30nY/iRHFP/trqD4LeTph+gcnJwj yWZLSVI8mgHag== Message-ID: Date: Sat, 7 Oct 2023 00:15:05 +0900 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.1 Subject: Re: [PATCH v2 2/2] extcon: max77843: add device-tree compatible string To: Marek Szyprowski , linux-kernel@vger.kernel.org Cc: Chanwoo Choi , Krzysztof Kozlowski , MyungJoo Ham References: <20231006100434.2908243-1-m.szyprowski@samsung.com> <20231006100434.2908243-2-m.szyprowski@samsung.com> From: Chanwoo Choi Content-Language: en-US In-Reply-To: <20231006100434.2908243-2-m.szyprowski@samsung.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 23. 10. 6. 19:04, Marek Szyprowski wrote: > Add the needed device-tree compatible string to the MAX77843 extcon > driver, so it can be automatically loaded when compiled as a kernel > module and given device-tree contains separate 'muic' node under the main > MAX77843 PMIC node. > > Signed-off-by: Marek Szyprowski > --- > drivers/extcon/extcon-max77843.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/drivers/extcon/extcon-max77843.c b/drivers/extcon/extcon-max77843.c > index 1bc0426ce3f1..acb11a54f875 100644 > --- a/drivers/extcon/extcon-max77843.c > +++ b/drivers/extcon/extcon-max77843.c > @@ -946,9 +946,16 @@ static const struct platform_device_id max77843_muic_id[] = { > }; > MODULE_DEVICE_TABLE(platform, max77843_muic_id); > > +static const struct of_device_id of_max77843_muic_dt_match[] = { > + { .compatible = "maxim,max77843-muic", }, > + { /* sentinel */ }, > +}; > +MODULE_DEVICE_TABLE(of, of_max77843_muic_dt_match); > + > static struct platform_driver max77843_muic_driver = { > .driver = { > .name = "max77843-muic", > + .of_match_table = of_max77843_muic_dt_match, > }, > .probe = max77843_muic_probe, > .remove = max77843_muic_remove, Applied it. Thanks. -- Best Regards, Samsung Electronics Chanwoo Choi