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 4F3841474AF; Fri, 6 Dec 2024 14:54:16 +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=1733496856; cv=none; b=WJaJeZqEua/vsyFMruAdOXXtfT2p68MxJWHHlq6iM2zGgv7ptj6xD2/b3u864uPeL4y9r07zG+tvbRV0mNouyG0tBQZnkDt6wzm7W2y4kKbB0DzpS93jvjGvSEeqYlcC3ua21AyD0zGPHaT1oQqQrllfUVk1baxrPFafHFdsnqY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733496856; c=relaxed/simple; bh=JIOiBmHfdxS+R8A+Jhzylcz//YCIKR495wRc0Vgu4aE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uDaBRVHfmgGp/AY6XhUxeDFFUdf0bQykCsrXjDPKu5+Jje6KGibDkWqv/GJPPQJxWX87azmtX5z7l+O1JwL8RR75CeKuqg70tzJB16eoZWIOoldSsALDhAjYlz3gBmIPe7+ETOdEFGEjGyYQSFXRJCrbnpGbqCEXpAEE6sRKz58= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zOaZRgfj; 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="zOaZRgfj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AF5BFC4CED1; Fri, 6 Dec 2024 14:54:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733496856; bh=JIOiBmHfdxS+R8A+Jhzylcz//YCIKR495wRc0Vgu4aE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=zOaZRgfjOEouEGSN+j3YpWMhbEimBqrTrqx5/Y63YgOEcLPO9sRBOS9gfO9J08y8P GSgcuoTK0O0PAPoT8yIM6WqwzqY19q3Q/wgEGICvDk+cwQ9TOSdO58juRw6uYi2W+8 qGRlnUdq8KwUqDIySBljH6A+8YSSGEywtzEP/pAo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hsin-Te Yuan , AngeloGioacchino Del Regno , Matthias Brugger , Sasha Levin Subject: [PATCH 6.6 126/676] arm64: dts: mt8183: krane: Fix the address of eeprom at i2c4 Date: Fri, 6 Dec 2024 15:29:05 +0100 Message-ID: <20241206143658.275724718@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241206143653.344873888@linuxfoundation.org> References: <20241206143653.344873888@linuxfoundation.org> User-Agent: quilt/0.67 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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hsin-Te Yuan [ Upstream commit e9c60c34948662b5d47573490ee538439b29e462 ] The address of eeprom should be 50. Fixes: cd894e274b74 ("arm64: dts: mt8183: Add krane-sku176 board") Signed-off-by: Hsin-Te Yuan Reviewed-by: AngeloGioacchino Del Regno Reviewed-by: Matthias Brugger Link: https://lore.kernel.org/r/20240909-eeprom-v1-1-1ed2bc5064f4@chromium.org Signed-off-by: AngeloGioacchino Del Regno Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi b/arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi index 181da69d18f46..b0469a95ddc43 100644 --- a/arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi +++ b/arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi @@ -89,9 +89,9 @@ &i2c4 { clock-frequency = <400000>; vbus-supply = <&mt6358_vcn18_reg>; - eeprom@54 { + eeprom@50 { compatible = "atmel,24c32"; - reg = <0x54>; + reg = <0x50>; pagesize = <32>; vcc-supply = <&mt6358_vcn18_reg>; }; -- 2.43.0