Skip to content

Commit

Permalink
kboot: dcp: Use OS firmware 13.5 as compat version
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jannau committed Nov 6, 2023
1 parent e090641 commit 5d38988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5d38988

Please sign in to comment.