# HG changeset patch # User Mychaela Falconia # Date 1694288355 0 # Node ID 8de3891460db0ce6dd25a77c0930fffd2498da20 # Parent a7393d00996a6bac036b15ac231eb8b31a580c1e duart28/eeprom_rd.c: fix analyze_eeprom() return value diff -r a7393d00996a -r 8de3891460db duart28/eeprom_rd.c --- 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 '?';