We shouldn't be using debugfs_ namespace for this functionality. Rename debugfs_engines.[ch] to intel_gt_engines_debugfs.[ch] and then make functions, defines and structs follow suit. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210918025754.1254705-2-lucas.demarchi@intel.com
15 lines
309 B
C
15 lines
309 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef INTEL_GT_ENGINES_DEBUGFS_H
|
|
#define INTEL_GT_ENGINES_DEBUGFS_H
|
|
|
|
struct intel_gt;
|
|
struct dentry;
|
|
|
|
void intel_gt_engines_debugfs_register(struct intel_gt *gt, struct dentry *root);
|
|
|
|
#endif /* INTEL_GT_ENGINES_DEBUGFS_H */
|