linux/drivers/gpu/drm/i915/gt/intel_gt_debugfs.c

// SPDX-License-Identifier: MIT
/*
 * Copyright © 2019 Intel Corporation
 */

#include <linux/debugfs.h>

#include "i915_drv.h"
#include "intel_gt.h"
#include "intel_gt_debugfs.h"
#include "intel_gt_engines_debugfs.h"
#include "intel_gt_mcr.h"
#include "intel_gt_pm_debugfs.h"
#include "intel_sseu_debugfs.h"
#include "uc/intel_uc_debugfs.h"

int intel_gt_debugfs_reset_show(struct intel_gt *gt, u64 *val)
{}

void intel_gt_debugfs_reset_store(struct intel_gt *gt, u64 val)
{}

/*
 * keep the interface clean where the first parameter
 * is a 'struct intel_gt *' instead of 'void *'
 */
static int __intel_gt_debugfs_reset_show(void *data, u64 *val)
{}

static int __intel_gt_debugfs_reset_store(void *data, u64 val)
{}

DEFINE_SIMPLE_ATTRIBUTE();

static int steering_show(struct seq_file *m, void *data)
{}
DEFINE_INTEL_GT_DEBUGFS_ATTRIBUTE();

static void gt_debugfs_register(struct intel_gt *gt, struct dentry *root)
{}

void intel_gt_debugfs_register(struct intel_gt *gt)
{}

void intel_gt_debugfs_register_files(struct dentry *root,
				     const struct intel_gt_debugfs_file *files,
				     unsigned long count, void *data)
{}