intel: fix context dispatcher to call all Gen9 sub-functions
This commit is contained in:
@@ -376,7 +376,13 @@ pub fn build_ctx_workarounds(device_info: &IntelDeviceInfo) -> WorkaroundList {
|
||||
IntelGeneration::Gen6 => gen6_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen7 => gen7_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen8 => gen8_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen9 => skl_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen9 => {
|
||||
skl_ctx_workarounds_init(&mut wal);
|
||||
bxt_ctx_workarounds_init(&mut wal);
|
||||
kbl_ctx_workarounds_init(&mut wal);
|
||||
glk_ctx_workarounds_init(&mut wal);
|
||||
cfl_ctx_workarounds_init(&mut wal);
|
||||
}
|
||||
IntelGeneration::Gen9_5 => icl_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen12 => gen12_ctx_workarounds_init(&mut wal),
|
||||
IntelGeneration::Gen12_7 => xelpg_ctx_workarounds_init(&mut wal),
|
||||
|
||||
Reference in New Issue
Block a user