[PATCH] eeprom: at25: fram: Fix chip range in comment

A. Sverdlin posted 1 patch 1 month ago
drivers/misc/eeprom/at25.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] eeprom: at25: fram: Fix chip range in comment
Posted by A. Sverdlin 1 month ago
From: Alexander Sverdlin <alexander.sverdlin@siemens.com>

The first chip supported by the commented code is CY15B102QN, fix the
copy-paste error.

Cc: stable@vger.kernel.org
Fixes: cf4d2ce1eded ("eeprom: at25: fram: Detect and support inside-out chip variants")
Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
---
 drivers/misc/eeprom/at25.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c
index 2d0492867054f..8d4938e5f213b 100644
--- a/drivers/misc/eeprom/at25.c
+++ b/drivers/misc/eeprom/at25.c
@@ -404,7 +404,7 @@ static int at25_fram_to_chip(struct device *dev, struct spi_eeprom *chip)
 		chip->byte_len = BIT(id[7] - 0x21 + 4) * 1024;
 		break;
 	case 0x2a ... 0x30:
-		/* CY15B116QN ... CY15B116QN */
+		/* CY15B102QN ... CY15B116QN */
 		chip->byte_len = BIT(((id[7] >> 1) & 0xf) + 13);
 		break;
 	default:
-- 
2.51.0
Re: [PATCH] eeprom: at25: fram: Fix chip range in comment
Posted by Greg Kroah-Hartman 3 weeks, 6 days ago
On Thu, Aug 28, 2025 at 05:16:42PM +0200, A. Sverdlin wrote:
> From: Alexander Sverdlin <alexander.sverdlin@siemens.com>
> 
> The first chip supported by the commented code is CY15B102QN, fix the
> copy-paste error.
> 
> Cc: stable@vger.kernel.org

This is not a stable patch :(