Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

eeprom: at25: fram: Fix chip range in comment

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

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Link: https://patch.msgid.link/20251020145858.1598599-1-alexander.sverdlin@siemens.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alexander Sverdlin and committed by
Greg Kroah-Hartman
4c987d67 f20c1dbe

+1 -1
+1 -1
drivers/misc/eeprom/at25.c
··· 408 408 chip->byte_len = BIT(id[7] - 0x21 + 4) * 1024; 409 409 break; 410 410 case 0x2a ... 0x30: 411 - /* CY15B116QN ... CY15B116QN */ 411 + /* CY15B102QN ... CY15B116QN */ 412 412 chip->byte_len = BIT(((id[7] >> 1) & 0xf) + 13); 413 413 break; 414 414 default: