mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	tee: optee: take DT status property into account
DT nodes may have a 'status' property which, if set to anything other than 'ok' or 'okay', indicates to the OS that the DT node should be treated as if it was not present. So add that missing logic to the OP-TEE driver. Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
This commit is contained in:
		
							parent
							
								
									94710cac0e
								
							
						
					
					
						commit
						db878f76b9
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -696,7 +696,7 @@ static int __init optee_driver_init(void)
 | 
			
		|||
		return -ENODEV;
 | 
			
		||||
 | 
			
		||||
	np = of_find_matching_node(fw_np, optee_match);
 | 
			
		||||
	if (!np)
 | 
			
		||||
	if (!np || !of_device_is_available(np))
 | 
			
		||||
		return -ENODEV;
 | 
			
		||||
 | 
			
		||||
	optee = optee_probe(np);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue