Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.19 17 lines 367 B view raw
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 */