From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A152ABA45 for ; Tue, 7 Mar 2023 17:58:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1CB04C433EF; Tue, 7 Mar 2023 17:58:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1678211939; bh=uu4fTqgmkgZcz/KVZl73vpBU7jZIanvK/uILpJ5R0bM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ODeHgOqdCcUul+l821tMcbMIdT3Ect59JFFdmBXZrwDF8M5B21L4Y9SEkPT86pkzg 0pKZkBriewLWSqUyJuyBjmEtYvVbDKxL61J5729f2AmwniY3ubQbSZC7Sp2jd1de3v TYg0oh9798+Hyx5ZZKK5giSV5R0YPDyo5KUfRTuU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vyacheslav Bocharov , Martin Blumenstingl , Neil Armstrong , Sasha Levin Subject: [PATCH 6.1 025/885] arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node Date: Tue, 7 Mar 2023 17:49:19 +0100 Message-Id: <20230307170002.748659202@linuxfoundation.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230307170001.594919529@linuxfoundation.org> References: <20230307170001.594919529@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Martin Blumenstingl [ Upstream commit f95acdb2b4af21caae2c76a48e565158181386ca ] Unit addresses should be written using lower-case hex characters. Use wifi_mac@c to fix a yaml schema validation error once the eFuse dt-bindings have been converted to a yaml schema: efuse: Unevaluated properties are not allowed ('wifi_mac@C' was unexpected) Also node names should use hyphens instead of underscores as the latter can also cause warnings. Fixes: abfaae24ecf3 ("arm64: dts: meson-gxl: add support for JetHub H1") Acked-by: Vyacheslav Bocharov Signed-off-by: Martin Blumenstingl Reviewed-by: Neil Armstrong Link: https://lore.kernel.org/r/20230111211350.1461860-2-martin.blumenstingl@googlemail.com Signed-off-by: Neil Armstrong Signed-off-by: Sasha Levin --- .../boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts b/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts index 6831137c5c109..270483e007bc8 100644 --- a/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts +++ b/arch/arm64/boot/dts/amlogic/meson-gxl-s905w-jethome-jethub-j80.dts @@ -90,7 +90,7 @@ bt_mac: bt_mac@6 { reg = <0x6 0x6>; }; - wifi_mac: wifi_mac@C { + wifi_mac: wifi-mac@c { reg = <0xc 0x6>; }; }; -- 2.39.2