fb: fix atyfb build warning
Fix build warning when neither of CONFIG_FB_ATY_GX or CONFIG_FB_ATY_CT is enabled, since ARRAY_SIZE(aty_chips) is 0 in that case. drivers/video/aty/atyfb_base.c:437:11: warning: overflow in implicit constant conversion [-Woverflow] Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: linux-fbdev@vger.kernel.org Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> Cc: Tomi Valkeinen <tomi.valkeinen@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
		
					parent
					
						
							
								486dd6d305
							
						
					
				
			
			
				commit
				
					
						6e36308a6f
					
				
			
		
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -434,8 +434,8 @@ static int correct_chipset(struct atyfb_par *par)
 | 
				
			||||||
	const char *name;
 | 
						const char *name;
 | 
				
			||||||
	int i;
 | 
						int i;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for (i = ARRAY_SIZE(aty_chips) - 1; i >= 0; i--)
 | 
						for (i = ARRAY_SIZE(aty_chips); i > 0; i--)
 | 
				
			||||||
		if (par->pci_id == aty_chips[i].pci_id)
 | 
							if (par->pci_id == aty_chips[i - 1].pci_id)
 | 
				
			||||||
			break;
 | 
								break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (i < 0)
 | 
						if (i < 0)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue