mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	Fix PCI_BASE_ADDRESS_5 handling in pci_hose_config_device()
Signed-off-by: FUJITA Kazutoshi <fujita@soum.co.jp> Signed-off-by: <wd@denx.de> Acked-by: Stefan Roese <sr@denx.de>
This commit is contained in:
		| @@ -388,7 +388,7 @@ int pci_hose_config_device(struct pci_controller *hose, | |||||||
|  |  | ||||||
| 	pci_hose_write_config_dword (hose, dev, PCI_COMMAND, 0); | 	pci_hose_write_config_dword (hose, dev, PCI_COMMAND, 0); | ||||||
|  |  | ||||||
| 	for (bar = PCI_BASE_ADDRESS_0; bar < PCI_BASE_ADDRESS_5; bar += 4) { | 	for (bar = PCI_BASE_ADDRESS_0; bar <= PCI_BASE_ADDRESS_5; bar += 4) { | ||||||
| 		pci_hose_write_config_dword (hose, dev, bar, 0xffffffff); | 		pci_hose_write_config_dword (hose, dev, bar, 0xffffffff); | ||||||
| 		pci_hose_read_config_dword (hose, dev, bar, &bar_response); | 		pci_hose_read_config_dword (hose, dev, bar, &bar_response); | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user