mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ARM: at91: Replace uses of virt_to_phys with __pa_symbol
The PM code wrongly uses virt_to_phys() instead of __pa_symbol() and was
not updated by commit 64fc2a947a ("ARM: 8641/1: treewide: Replace uses of
virt_to_phys with __pa_symbol") because it was not yet in tree.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
			
			
This commit is contained in:
		
							parent
							
								
									e025a3ac34
								
							
						
					
					
						commit
						093d79f62a
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -533,8 +533,8 @@ static void __init at91_pm_backup_init(void)
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	pm_bu->suspended = 0;
 | 
			
		||||
	pm_bu->canary = virt_to_phys(&canary);
 | 
			
		||||
	pm_bu->resume = virt_to_phys(cpu_resume);
 | 
			
		||||
	pm_bu->canary = __pa_symbol(&canary);
 | 
			
		||||
	pm_bu->resume = __pa_symbol(cpu_resume);
 | 
			
		||||
 | 
			
		||||
	return;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue