mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-26 17:26:14 +00:00
skl: initialize instdone bits for gen9
gen9 uses the same bits as gen8. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
parent
256831cd88
commit
4d95a1551b
@ -417,10 +417,18 @@ init_gen8_instdone(void)
|
||||
init_gen75_instdone();
|
||||
}
|
||||
|
||||
static void
|
||||
init_gen9_instdone(void)
|
||||
{
|
||||
init_gen8_instdone();
|
||||
}
|
||||
|
||||
void
|
||||
init_instdone_definitions(uint32_t devid)
|
||||
{
|
||||
if (IS_GEN8(devid)) {
|
||||
if (IS_GEN9(devid)) {
|
||||
init_gen9_instdone();
|
||||
} else if (IS_GEN8(devid)) {
|
||||
init_gen8_instdone();
|
||||
} else if (IS_GEN7(devid)) {
|
||||
init_gen7_instdone();
|
||||
|
Loading…
x
Reference in New Issue
Block a user