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 10 struct intel_gt; 11 struct dentry; 12 struct seq_file; 13 14 int intel_sseu_status(struct seq_file *m, struct intel_gt *gt); 15 void intel_sseu_debugfs_register(struct intel_gt *gt, struct dentry *root); 16 17 #endif /* INTEL_SSEU_DEBUGFS_H */ 18