mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	ARM: EXYNOS: Fix the check for non-smp configuration
Commit 1754c42e3db5("ARM: exynos: move sysram info to exynos.c") missed
out the CONFIG_ prefix causing exynos_sysram_init() to get called twice
for SMP configurations.
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Reviewed-by: Sachin Kamat <sachin.kamat@samsug.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
			
			
This commit is contained in:
		
							parent
							
								
									4c834452aa
								
							
						
					
					
						commit
						73ea6ec66a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -297,7 +297,7 @@ static void __init exynos_dt_machine_init(void) | |||
| 	 * This is called from smp_prepare_cpus if we've built for SMP, but | ||||
| 	 * we still need to set it up for PM and firmware ops if not. | ||||
| 	 */ | ||||
| 	if (!IS_ENABLED(SMP)) | ||||
| 	if (!IS_ENABLED(CONFIG_SMP)) | ||||
| 		exynos_sysram_init(); | ||||
| 
 | ||||
| 	exynos_cpuidle_init(); | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Abhilash Kesavan
						Abhilash Kesavan