mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	iommu/amd: Fix wrong check for ARRAY_SIZE()
The check in the for-loop is broken. Fix it and the boot-crash it causes in AMD IOMMUv2 systems. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
		
							parent
							
								
									32ab31e01e
								
							
						
					
					
						commit
						2bd5ed002c
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -1111,7 +1111,7 @@ static void print_iommu_info(void) | |||
| 
 | ||||
| 		if (iommu->cap & (1 << IOMMU_CAP_EFR)) { | ||||
| 			pr_info("AMD-Vi:  Extended features: "); | ||||
| 			for (i = 0; ARRAY_SIZE(feat_str); ++i) { | ||||
| 			for (i = 0; i < ARRAY_SIZE(feat_str); ++i) { | ||||
| 				if (iommu_feature(iommu, (1ULL << i))) | ||||
| 					pr_cont(" %s", feat_str[i]); | ||||
| 			} | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Joerg Roedel
						Joerg Roedel