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 A258916F288; Wed, 5 Feb 2025 14:44:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738766652; cv=none; b=aExL6uVpDAHqDp8vH66tA2PXdv7w85VpH/Ps2ImCvTAoWdeaDZtXhoBoxAg+J9w4jrzSgb7WUDoQMPzCHYjHvsfgN4k8YuSyEHGL4QhUcn2TJPEsX0e4qypRZKClV95MywAShgXyzxLMhOjkHGn2Z/mVmyN8MkcO4/ApaAWsyOY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738766652; c=relaxed/simple; bh=dPm3HsZlHb6YQq8nySe0kquTYur/LZO1aOBM4Zr9oAo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Mg07sOV/fPqXdbwDbMDxTW9QfRbxoFWb5Wafxa+BP8QVquPVdOEJeVovGQ6uKGZeR9lQwhFwLIUFGOfzu/9gkEsv3VZnBeR8+M8fcd7tEIa/XAxyUT/8JsIJoIqsl4JNQ7gJXh8/QPQdqmp/e/xadsqQyJoplLwWZFyUzxVLBYE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1oC2BdAe; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="1oC2BdAe" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9800BC4CED1; Wed, 5 Feb 2025 14:44:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1738766652; bh=dPm3HsZlHb6YQq8nySe0kquTYur/LZO1aOBM4Zr9oAo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1oC2BdAeESHMj7itlz/2JBZVGj5oJ6f10VRh9Kk36zgwR8pZv89OL6ZiqGmJGwzXs veuAAwMnMtDgAwcLMBcf6cfAy6H2yGY3pmeTjncr97HjljnnEN6zegaGcduqRsLMhq pckzimqNgI8vhdrr8zFcKc/wS4B1RcUnt2ruDmOI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ricky CX Wu , Delphine CC Chiu , Andrew Jeffery , Sasha Levin Subject: [PATCH 6.12 324/590] ARM: dts: aspeed: yosemite4: correct the compatible string of adm1272 Date: Wed, 5 Feb 2025 14:41:19 +0100 Message-ID: <20250205134507.671608224@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250205134455.220373560@linuxfoundation.org> References: <20250205134455.220373560@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ricky CX Wu [ Upstream commit ece3e20e3389ec8a32944ad44746ee379bf1d3eb ] Remove the space in the compatible string of adm1272 to match the pattern of compatible. Fixes: 2b8d94f4b4a4 ("ARM: dts: aspeed: yosemite4: add Facebook Yosemite 4 BMC") Signed-off-by: Ricky CX Wu Signed-off-by: Delphine CC Chiu Fixes: 2b8d94f4b4a4765d ("ARM: dts: aspeed: yosemite4: add Facebook Yosemite 4 BMC") Reviewed-by: Andrew Jeffery Link: https://patch.msgid.link/20240927085213.331127-1-Delphine_CC_Chiu@wiwynn.com Signed-off-by: Andrew Jeffery Signed-off-by: Sasha Levin --- arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-yosemite4.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-yosemite4.dts b/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-yosemite4.dts index 98477792aa005..7ed76cd4fd2d0 100644 --- a/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-yosemite4.dts +++ b/arch/arm/boot/dts/aspeed/aspeed-bmc-facebook-yosemite4.dts @@ -284,12 +284,12 @@ &i2c11 { status = "okay"; power-sensor@10 { - compatible = "adi, adm1272"; + compatible = "adi,adm1272"; reg = <0x10>; }; power-sensor@12 { - compatible = "adi, adm1272"; + compatible = "adi,adm1272"; reg = <0x12>; }; -- 2.39.5