mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	ARM: 5997/1: ARM: Correct the VFPv3 detection
A CPU has VFPv3 hardware if the FPSID[19:16] bits are 2 or more. Currently Linux was only checking for 3 or more. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
		
							parent
							
								
									e7c5650f60
								
							
						
					
					
						commit
						325ffc3633
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -545,7 +545,7 @@ static int __init vfp_init(void) | |||
| 		 */ | ||||
| 		elf_hwcap |= HWCAP_VFP; | ||||
| #ifdef CONFIG_VFPv3 | ||||
| 		if (VFP_arch >= 3) { | ||||
| 		if (VFP_arch >= 2) { | ||||
| 			elf_hwcap |= HWCAP_VFPv3; | ||||
| 
 | ||||
| 			/*
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Catalin Marinas
						Catalin Marinas