changeset 30:8de3891460db

duart28/eeprom_rd.c: fix analyze_eeprom() return value
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 09 Sep 2023 19:39:15 +0000
parents a7393d00996a
children 530ec3792de8
files duart28/eeprom_rd.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/duart28/eeprom_rd.c	Sat Sep 09 19:13:35 2023 +0000
+++ b/duart28/eeprom_rd.c	Sat Sep 09 19:39:15 2023 +0000
@@ -135,7 +135,7 @@
 	}
 	if (eeprom[2] == 0x6010 && eeprom[31] == 'S') {
 		printf("EEPROM is programmed for DUART28S\n");
-		return 'C';
+		return 'S';
 	}
 	printf("EEPROM is inconsistent between C and S configs!\n");
 	return '?';