kboot: dcp: Use OS firmware 13.5 as compat version

The dptxport endpoint changed API between 13.3 and 13.5. Nobody is
supposed to run 13.3 OS firmware at this point so do not claim to be
compatible. The DCP linux driver is fixed since a couple of weeks to
accept 13.5 as compat version.

Signed-off-by: Janne Grunau <j@jannau.net>
This commit is contained in:
Janne Grunau 2023-11-06 18:45:30 +01:00 committed by Hector Martin
parent 4ce65e1c08
commit e4ea2d5319

View file

@ -1343,7 +1343,7 @@ static int dt_set_dcp_firmware(const char *alias)
break;
case V13_5B4:
case V13_5:
compat = &fw_versions[V13_3];
compat = &fw_versions[V13_5];
break;
default:
compat = &os_firmware;