Files
linux/drivers/gpu/drm/xe/xe_tile_debugfs.h
Michal Wajdeczko 8cd71c40e9 drm/xe/debugfs: Promote xe_tile_debugfs_simple_show
We will want to use this helper function in other files.

Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://lore.kernel.org/r/20250928140029.198847-6-michal.wajdeczko@intel.com
2025-09-29 23:58:48 +02:00

17 lines
366 B
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_TILE_DEBUGFS_H_
#define _XE_TILE_DEBUGFS_H_
struct seq_file;
struct xe_tile;
void xe_tile_debugfs_register(struct xe_tile *tile);
int xe_tile_debugfs_simple_show(struct seq_file *m, void *data);
int xe_tile_debugfs_show_with_rpm(struct seq_file *m, void *data);
#endif