forked from mirrors/linux
		
	 7fdb98e8a7
			
		
	
	
		7fdb98e8a7
		
	
	
	
	
		
			
			Add a new device property to fetch clk-name from firmware. Signed-off-by: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com> Reviewed-by: Mario Limonciello <Mario.Limonciello@amd.com> Link: https://lore.kernel.org/r/20211212180527.1641362-4-AjitKumar.Pandey@amd.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: MIT */
 | |
| /*
 | |
|  * clock framework for AMD misc clocks
 | |
|  *
 | |
|  * Copyright 2018 Advanced Micro Devices, Inc.
 | |
|  */
 | |
| 
 | |
| #ifndef __CLK_FCH_H
 | |
| #define __CLK_FCH_H
 | |
| 
 | |
| #include <linux/compiler.h>
 | |
| 
 | |
| struct fch_clk_data {
 | |
| 	void __iomem *base;
 | |
| 	char *name;
 | |
| };
 | |
| 
 | |
| #endif /* __CLK_FCH_H */
 |