diff options
author | Shaohua Li <shaohua.li@intel.com> | 2007-12-17 20:56:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-01 18:04:27 -0500 |
commit | f34303de9e0263b389a215483adddc7d918cf8c8 (patch) | |
tree | 98c015b000d4a9dcd24a1c31ce05985ee7c07afb | |
parent | 9ed885541bc57a0810798ec1607a23a24a0e1b93 (diff) |
PCI: fix typo in pci_save_pcix_state
pci_save/store_state has multiple bugs, which will cause cap can't be
saved/restored correctly. Below 3 patches fix them.
fix the typo in pci_save_pcix_state
Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index d30e802d9a1a..b01ed9a5ab43 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -620,7 +620,7 @@ static int pci_save_pcix_state(struct pci_dev *dev) | |||
620 | if (pos <= 0) | 620 | if (pos <= 0) |
621 | return 0; | 621 | return 0; |
622 | 622 | ||
623 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP); | 623 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX); |
624 | if (!save_state) | 624 | if (!save_state) |
625 | save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL); | 625 | save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL); |
626 | if (!save_state) { | 626 | if (!save_state) { |