mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 18:12:26 -04:00
LRC tunings were added after the gt ones and didn't add the call in xe_gt_record_default_lrcs() to process them like is done for workarounds. Add such a function and call it from xe_gt_record_default_lrcs(). Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
16 lines
266 B
C
16 lines
266 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_TUNING_
|
|
#define _XE_TUNING_
|
|
|
|
struct xe_gt;
|
|
struct xe_hw_engine;
|
|
|
|
void xe_tuning_process_gt(struct xe_gt *gt);
|
|
void xe_tuning_process_lrc(struct xe_hw_engine *hwe);
|
|
|
|
#endif
|