diff options
author | Linas Vepstas <linas@linas.org> | 2005-11-03 18:54:34 -0600 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-10 15:29:43 +1100 |
commit | 821b537fd7bf9018f1df4b882cea199613147f65 (patch) | |
tree | ba22846f6fe8002f105f46e21e60617995d6fb9e /arch/powerpc | |
parent | 9fb40eb883ad2d22ad6975b4323cb76e018fa280 (diff) | |
download | linux-821b537fd7bf9018f1df4b882cea199613147f65.tar.gz linux-821b537fd7bf9018f1df4b882cea199613147f65.tar.bz2 linux-821b537fd7bf9018f1df4b882cea199613147f65.zip |
[PATCH] powerpc: bugfix: fill in uninitialized field
235-eeh-set-pcidev-bugfix.patch
The pci device field of the pci_dn struct should be initialized to a
valid value.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
(cherry picked from beb45c93d494a11c36e5b24f638e610db8428b54 commit)
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/pseries/eeh_cache.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh_cache.c b/arch/powerpc/platforms/pseries/eeh_cache.c index 9fe2a7de04c0..ff6c938f424b 100644 --- a/arch/powerpc/platforms/pseries/eeh_cache.c +++ b/arch/powerpc/platforms/pseries/eeh_cache.c @@ -307,6 +307,9 @@ void __init pci_addr_cache_build(void) /* Save the BAR's; firmware doesn't restore these after EEH reset */ dn = pci_device_to_OF_node(dev); eeh_save_bars(dev, PCI_DN(dn)); + + pci_dev_get (dev); /* matching put is in eeh_remove_device() */ + PCI_DN(dn)->pcidev = dev; } #ifdef DEBUG |