mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-20 22:36:24 +00:00
intel_bios_reader: check mipi sequence block version
Bail out on v3+, we don't support that just yet. Signed-off-by: Jani Nikula <jani.nikula@intel.com>
This commit is contained in:
parent
bdf7b1c0eb
commit
68cfe4ba57
@ -1036,6 +1036,11 @@ static void dump_mipi_sequence(const struct bdb_block *block)
|
||||
return;
|
||||
}
|
||||
|
||||
printf("\tSequence block version v%u\n", sequence->version);
|
||||
|
||||
if (sequence->version >= 3)
|
||||
return;
|
||||
|
||||
block_size = get_blocksize(sequence);
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user