From patchwork Fri Jul 1 13:44:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vincent Knecht X-Patchwork-Id: 586424 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 7E153CCA479 for ; Fri, 1 Jul 2022 13:45:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231478AbiGANpW (ORCPT ); Fri, 1 Jul 2022 09:45:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37952 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231442AbiGANpJ (ORCPT ); Fri, 1 Jul 2022 09:45:09 -0400 Received: from msg-1.mailo.com (msg-1.mailo.com [213.182.54.11]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5BBB7248DB; Fri, 1 Jul 2022 06:45:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=mailoo.org; s=mailo; t=1656683082; bh=OnG6BofeKIcOc3qBoOMQcWAYSD8krtB0UZjVBxSp6Og=; h=X-EA-Auth:From:To:Cc:Subject:Date:Message-Id:X-Mailer:In-Reply-To: References:MIME-Version:Content-Transfer-Encoding; b=Gmpttl5zRTuO7fCvNFPRgfYrOyS477V/GKM8LBLG/MSzTajyq1QGtmPBrE/LQpETM NIDy2RzHbkhWGo8EexsNdLJtacrfEUzyCkwwP7x4FMZzxtpTrtd2UDX7PQ4GXbs67T 20XIzsU1TQHNsnADjDTnVHs5/oQMyKS5D6ZeiCu0= Received: by b-6.in.mailobj.net [192.168.90.16] with ESMTP via [213.182.55.207] Fri, 1 Jul 2022 15:44:42 +0200 (CEST) X-EA-Auth: MfTO2Nm054f7NL6kgU1KAx1yW2AAntMhbn7D1/uL+jEQXzr90F1e90q2PB1vuycz3X/FXeNZl4GtVGDTIlkWFrZmwAfGSJu5IDAfRceBnIc= From: Vincent Knecht To: Pavel Machek , Rob Herring , Krzysztof Kozlowski , "H. Nikolaus Schaller" , linux-leds@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, phone-devel@vger.kernel.org, Vincent Knecht Subject: [PATCH v2 3/6] leds: is31fl319x: Add missing si-en compatibles Date: Fri, 1 Jul 2022 15:44:10 +0200 Message-Id: <20220701134415.4017794-4-vincent.knecht@mailoo.org> X-Mailer: git-send-email 2.35.3 In-Reply-To: <20220701134415.4017794-1-vincent.knecht@mailoo.org> References: <20220701134415.4017794-1-vincent.knecht@mailoo.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-leds@vger.kernel.org Add si-en compatibles for all chip variants. Signed-off-by: Vincent Knecht --- drivers/leds/leds-is31fl319x.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/leds/leds-is31fl319x.c b/drivers/leds/leds-is31fl319x.c index 4161b9dd7e48..0db5d4988131 100644 --- a/drivers/leds/leds-is31fl319x.c +++ b/drivers/leds/leds-is31fl319x.c @@ -102,6 +102,10 @@ static const struct of_device_id of_is31fl319x_match[] = { { .compatible = "issi,is31fl3193", .data = &is31fl3193_cdef, }, { .compatible = "issi,is31fl3196", .data = &is31fl3196_cdef, }, { .compatible = "issi,is31fl3199", .data = &is31fl3199_cdef, }, + { .compatible = "si-en,sn3190", .data = &is31fl3190_cdef, }, + { .compatible = "si-en,sn3191", .data = &is31fl3190_cdef, }, + { .compatible = "si-en,sn3193", .data = &is31fl3193_cdef, }, + { .compatible = "si-en,sn3196", .data = &is31fl3196_cdef, }, { .compatible = "si-en,sn3199", .data = &is31fl3199_cdef, }, { } }; @@ -432,6 +436,10 @@ static const struct i2c_device_id is31fl319x_id[] = { { "is31fl3193" }, { "is31fl3196" }, { "is31fl3199" }, + { "sn3190" }, + { "sn3191" }, + { "sn3193" }, + { "sn3196" }, { "sn3199" }, {}, };