From nobody Wed Apr 8 10:17:47 2026 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 D5AE2C38A2D for ; Tue, 25 Oct 2022 07:20:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231634AbiJYHUT (ORCPT ); Tue, 25 Oct 2022 03:20:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60924 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231700AbiJYHUI (ORCPT ); Tue, 25 Oct 2022 03:20:08 -0400 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2ED8BB6E for ; Tue, 25 Oct 2022 00:20:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1666682406; x=1698218406; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=iCTvU19zpsH4FkmtT+7NycDFSGCiw9AqlX5HMzgrTx0=; b=ZuR29ooEuvCjXuflJ6wbN3NyGO0w8dk7PwMuG1rV+nJWrckYjkF6SpIy pflTG3Zdr1KSarNriDY8BJie1bYRtbBi5LiDFmwZQ0fVW5TUiFDePTl/y joKkUU4p5JEjgQ1Dxv9qbisEYWOp79zhXsOXMAQ+fJVP+w8QaHgDkIsls WxTs4YwXPAI8652yK5FLCaAiOVz9s2lh1uYZedCEWwtMLMvI9F35534O8 hy9DE58VgDJWOZFRSzX1+yHZWr3D3W9R+FUSrhflEknGanV+YSFjxkmt0 bUcMnTEQqa/nZ/LL+xrLtmpSSaeB2cHVdL7SsS50cGiFO9RQ/oYNCsw1g A==; X-IronPort-AV: E=Sophos;i="5.95,211,1661842800"; d="scan'208";a="120208009" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa6.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 25 Oct 2022 00:20:05 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.12; Tue, 25 Oct 2022 00:20:04 -0700 Received: from localhost.localdomain (10.10.115.15) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2507.12 via Frontend Transport; Tue, 25 Oct 2022 00:20:02 -0700 From: Claudiu Beznea To: , CC: , , "Claudiu Beznea" Subject: [PATCH] nvmem: lan9662-otp: fix compatible name Date: Tue, 25 Oct 2022 10:22:17 +0300 Message-ID: <20221025072217.3715634-1-claudiu.beznea@microchip.com> X-Mailer: git-send-email 2.33.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Documentation of lan9662-otpc driver (namely Documentation/\ devicetree/bindings/nvmem/microchip,lan9662-otpc.yaml) express that compatible for this driver contains "otpc" string at the end but not "otp" as currently present. Fix this typo. Fixes: 9e8f208ad522 ("nvmem: lan9662-otp: add support") Signed-off-by: Claudiu Beznea Reviewed-by: Horatiu Vultur --- drivers/nvmem/lan9662-otpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nvmem/lan9662-otpc.c b/drivers/nvmem/lan9662-otpc.c index f6732fd216d8..377bf34c2946 100644 --- a/drivers/nvmem/lan9662-otpc.c +++ b/drivers/nvmem/lan9662-otpc.c @@ -203,7 +203,7 @@ static int lan9662_otp_probe(struct platform_device *pd= ev) } =20 static const struct of_device_id lan9662_otp_match[] =3D { - { .compatible =3D "microchip,lan9662-otp", }, + { .compatible =3D "microchip,lan9662-otpc", }, { }, }; MODULE_DEVICE_TABLE(of, lan9662_otp_match); --=20 2.34.1