mirror of
https://github.com/xcat2/xNBA.git
synced 2025-02-16 18:48:12 +00:00
[e1000] Use PCI_BASE_ADDRESS_* symbols instead of integers
When compiling for the Linux kernel, PCI_BASE_ADDRESS_0 == 0, and PCI_BASE_ADDRESS_1 == 1. This is not so when compiling for gPXE. We must use the symbolic names rather than integers to get the correct values. Bug identified and patch supplied by: George Chou <george.chou@advantech.com>
This commit is contained in:
parent
ce0a0ccf5c
commit
1206999288
@ -818,8 +818,8 @@ e1000_probe ( struct pci_device *pdev,
|
||||
* because it depends on mac_type
|
||||
*/
|
||||
if ( ( adapter->hw.mac_type == e1000_ich8lan ) && ( pdev->ioaddr ) ) {
|
||||
flash_start = pci_bar_start ( pdev, 1 );
|
||||
flash_len = pci_bar_size ( pdev, 1 );
|
||||
flash_start = pci_bar_start ( pdev, PCI_BASE_ADDRESS_1 );
|
||||
flash_len = pci_bar_size ( pdev, PCI_BASE_ADDRESS_1 );
|
||||
adapter->hw.flash_address = ioremap ( flash_start, flash_len );
|
||||
if ( ! adapter->hw.flash_address )
|
||||
goto err_flashmap;
|
||||
|
Loading…
x
Reference in New Issue
Block a user