mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 a00eda7d89
			
		
	
	
		a00eda7d89
		
	
	
	
	
		
			
			In line with what happened for other gt-related features, move the sseu debugfs files under gt/. The sseu_status debugfs has also been kept at the top level as we do have tests that use it; it will be removed once we teach the tests to look into the new path. Suggested-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Cc: Andi Shyti <andi.shyti@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20200708003952.21831-10-daniele.ceraolospurio@intel.com
		
			
				
	
	
		
			18 lines
		
	
	
		
			367 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			367 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: MIT */
 | |
| 
 | |
| /*
 | |
|  * Copyright © 2020 Intel Corporation
 | |
|  */
 | |
| 
 | |
| #ifndef INTEL_SSEU_DEBUGFS_H
 | |
| #define INTEL_SSEU_DEBUGFS_H
 | |
| 
 | |
| struct intel_gt;
 | |
| struct dentry;
 | |
| struct seq_file;
 | |
| 
 | |
| int intel_sseu_status(struct seq_file *m, struct intel_gt *gt);
 | |
| void intel_sseu_debugfs_register(struct intel_gt *gt, struct dentry *root);
 | |
| 
 | |
| #endif /* INTEL_SSEU_DEBUGFS_H */
 |