diff options
| author | Michael Brown | 2005-04-22 18:31:52 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-22 18:31:52 +0200 |
| commit | 08ff0c1d309f115846e27b8eb10501c8dc675408 (patch) | |
| tree | 00fbac5f304a1803c04f839ead8cafd1586b6254 /src/drivers/net/prism2_plx.c | |
| parent | Coerced into compiling (diff) | |
| download | ipxe-08ff0c1d309f115846e27b8eb10501c8dc675408.tar.gz ipxe-08ff0c1d309f115846e27b8eb10501c8dc675408.tar.xz ipxe-08ff0c1d309f115846e27b8eb10501c8dc675408.zip | |
Ensured that all drivers call xxx_fill_nic().
Diffstat (limited to 'src/drivers/net/prism2_plx.c')
| -rw-r--r-- | src/drivers/net/prism2_plx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/drivers/net/prism2_plx.c b/src/drivers/net/prism2_plx.c index 81d1c22ee..36c0c5afc 100644 --- a/src/drivers/net/prism2_plx.c +++ b/src/drivers/net/prism2_plx.c @@ -80,6 +80,8 @@ static int prism2_find_plx ( hfa384x_t *hw, struct pci_device *p ) static int prism2_plx_probe ( struct nic *nic, struct pci_device *pci ) { hfa384x_t *hw = &hw_global; + + pci_fill_nic ( nic, pci ); /* Find and intialise PLX Prism2 card */ if ( ! prism2_find_plx ( hw, pci ) ) return 0; |
