1/* SPDX-License-Identifier: MIT */
2
3/*
4 * Copyright �� 2020 Intel Corporation
5 */
6
7#ifndef INTEL_SSEU_DEBUGFS_H
8#define INTEL_SSEU_DEBUGFS_H
9
10struct intel_gt;
11struct dentry;
12struct seq_file;
13
14int intel_sseu_status(struct seq_file *m, struct intel_gt *gt);
15void intel_sseu_debugfs_register(struct intel_gt *gt, struct dentry *root);
16
17#endif /* INTEL_SSEU_DEBUGFS_H */
18