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 C41DEC25B4E for ; Fri, 20 Jan 2023 07:21:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229489AbjATHVQ (ORCPT ); Fri, 20 Jan 2023 02:21:16 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58176 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229712AbjATHVP (ORCPT ); Fri, 20 Jan 2023 02:21:15 -0500 Received: from mail-wr1-x435.google.com (mail-wr1-x435.google.com [IPv6:2a00:1450:4864:20::435]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 220D274E85 for ; Thu, 19 Jan 2023 23:21:14 -0800 (PST) Received: by mail-wr1-x435.google.com with SMTP id h12so3103wrv.10 for ; Thu, 19 Jan 2023 23:21:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=QS+zr7J2/9XVv/To9npcQgO+pWfynQOqGssuU3FGi5Y=; b=wi3mrkzusyt6U0jliKhTh0HGpAdXyP7syUl7b2XQNJEmEDY/BGma3qfn8nGsbcK+iu LPF288oFOBVff4A0ViGih64u1IA8qqlvapgd2rn85Ojftha7KhkHwEJTEXu/VvxfwBJt hyq48tJjIp9KIJ4Uif1+XFLIuwuFFoBM4TaBDocOn7jKeNhm/3Xq9gOnp9maO+FO9q3t kri59CzOsZrXa6G/q6UF9g3UK8c8l32QxgUxcdep3b3UHr1iIHMCxdMWVfgFkCdstX+K 2rsq7tMr9E1faxRfhYMf7r9iRrDCiaTsdmHKRJexxWAgPnaMAuatLBjqXKbIZBop9VKl p9qg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=QS+zr7J2/9XVv/To9npcQgO+pWfynQOqGssuU3FGi5Y=; b=f6vJ0bR13k1MooMezgZznBiWzM8WYKnwsySg/VzImgegBksEBXrGXPz5ZcEL09iFQL T/1g9TDRThr7P9ZmJovQXTzjZJis3mz5nnSO6aRmfsGIEK2li5l4NeriU2MFppUsi6SI lcAgWE+v2mcyGjOyR4t5KhedIBasITM0G1VrLWCfD1hty9eKRWBhlU/kgc6VxR8i1BgR JA6yT8WHQdFWkvgF4VC3shOmlAK2lcnD4Tos/CNEueLTAjOgwPCEkcAuvOSkPt1CfAKU Hxb3NUst78R2f8gYkOUaGlbzqHu9IyOJrr2/1s9cvulLv/Y6aak21fImPsJBZ8Wtpe3e hFaQ== X-Gm-Message-State: AFqh2kok6uvMdDOiv5F8b4nVQtLQGLIuxDNErFHDPDB/0yUiE8R5QQy4 OHui9WSlPUYPQtkApmc3qpZJfQ== X-Google-Smtp-Source: AMrXdXvvUFXBd7OqrLeAl/oKe+DMJDGCEQdiQfSt9ivW9aAjKqDqfR5lUhQPz3zc8wW45uVgVjaYiQ== X-Received: by 2002:a5d:618c:0:b0:2be:5075:16cc with SMTP id j12-20020a5d618c000000b002be507516ccmr2481318wru.31.1674199272612; Thu, 19 Jan 2023 23:21:12 -0800 (PST) Received: from krzk-bin.. ([178.197.216.144]) by smtp.gmail.com with ESMTPSA id k18-20020adfb352000000b00241fab5a296sm36025376wrd.40.2023.01.19.23.21.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Jan 2023 23:21:12 -0800 (PST) From: Krzysztof Kozlowski To: Patrice Chotard , Rob Herring , Krzysztof Kozlowski , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH] ARM: dts: stih418: align OPP table names with DT schema Date: Fri, 20 Jan 2023 08:21:10 +0100 Message-Id: <20230120072110.138627-1-krzysztof.kozlowski@linaro.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org DT schema expects names of operating points tables to match certain pattern: stih418-b2264.dtb: opp_table: $nodename:0: 'opp_table' does not match '^opp-table(-[a-z0-9]+)?$' Signed-off-by: Krzysztof Kozlowski --- arch/arm/boot/dts/stih418-b2264.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/stih418-b2264.dts b/arch/arm/boot/dts/stih418-b2264.dts index 34a518b037ab..fc32a03073b6 100644 --- a/arch/arm/boot/dts/stih418-b2264.dts +++ b/arch/arm/boot/dts/stih418-b2264.dts @@ -42,7 +42,7 @@ cpu@3 { }; }; - cpu_opp_table: opp_table { + cpu_opp_table: opp-table { compatible = "operating-points-v2"; opp-shared; -- 2.34.1