mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 02:46:06 +00:00
5b882c1e5a
We don't need to include <linux/types.h>. We don't use struct xe_exec_queue here. We should sort forward declarations. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240506205254.2659-1-michal.wajdeczko@intel.com
23 lines
401 B
C
23 lines
401 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_MOCS_H_
|
|
#define _XE_MOCS_H_
|
|
|
|
struct drm_printer;
|
|
struct xe_gt;
|
|
|
|
void xe_mocs_init_early(struct xe_gt *gt);
|
|
void xe_mocs_init(struct xe_gt *gt);
|
|
|
|
/**
|
|
* xe_mocs_dump - Dump mocs table
|
|
* @gt: GT structure
|
|
* @p: Printer to dump info to
|
|
*/
|
|
void xe_mocs_dump(struct xe_gt *gt, struct drm_printer *p);
|
|
|
|
#endif
|