realtek: fix gcc-12 build with -Werror=array-compare
Removing this gcc-12 error: arch/mips/rtl838x/setup.c:64:30: error: comparison between two arrays [-Werror=array-compare] 64 | else if (__dtb_start != __dtb_end) Signed-off-by: Bjørn Mork <bjorn@mork.no>
This commit is contained in:
		
				
					committed by
					
						
						Sander Vanheule
					
				
			
			
				
	
			
			
			
						parent
						
							d9e12c21fa
						
					
				
				
					commit
					d6eebaf995
				
			@@ -61,7 +61,7 @@ void __init plat_mem_setup(void)
 | 
			
		||||
 | 
			
		||||
	if (fw_passed_dtb) /* UHI interface */
 | 
			
		||||
		dtb = (void *)fw_passed_dtb;
 | 
			
		||||
	else if (__dtb_start != __dtb_end)
 | 
			
		||||
	else if (&__dtb_start[0] != &__dtb_end[0])
 | 
			
		||||
		dtb = (void *)__dtb_start;
 | 
			
		||||
	else
 | 
			
		||||
		panic("no dtb found");
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user