1
0
Fork 0

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>
hifive-unleashed-5.1
Shaohua Li 2007-12-18 09:56:47 +08:00 committed by Greg Kroah-Hartman
parent 9ed885541b
commit f34303de9e
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ static int pci_save_pcix_state(struct pci_dev *dev)
if (pos <= 0)
return 0;
save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
if (!save_state)
save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
if (!save_state) {