mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	arch_topology: Fix section miss match warning due to free_raw_capacity()
Remove the __init annotation from free_raw_capacity() to avoid the following warning. The function init_cpu_capacity_callback() references the function __init free_raw_capacity(). WARNING: vmlinux.o(.text+0x425cc0): Section mismatch in reference from the function init_cpu_capacity_callback() to the function .init.text:free_raw_capacity(). Signed-off-by: Prasad Sodagudi <psodagud@codeaurora.org> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									f4f89f23e6
								
							
						
					
					
						commit
						82d8ba717c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -96,7 +96,7 @@ subsys_initcall(register_cpu_capacity_sysctl);
 | 
			
		|||
static u32 capacity_scale;
 | 
			
		||||
static u32 *raw_capacity;
 | 
			
		||||
 | 
			
		||||
static int __init free_raw_capacity(void)
 | 
			
		||||
static int free_raw_capacity(void)
 | 
			
		||||
{
 | 
			
		||||
	kfree(raw_capacity);
 | 
			
		||||
	raw_capacity = NULL;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue