mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 06:52:34 -04:00
Our debugfs helper xe_gt_debugfs_show_with_rpm() expects print() functions to return int. New signature allows us to drop wrapper. While around, move kernel-doc closer to the function definition, as suggested in the doc-guide. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://lore.kernel.org/r/20250923211613.193347-5-michal.wajdeczko@intel.com
17 lines
305 B
C
17 lines
305 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);
|
|
int xe_mocs_dump(struct xe_gt *gt, struct drm_printer *p);
|
|
|
|
#endif
|