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>
This commit is contained in:
parent
9ed885541b
commit
f34303de9e
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ static int pci_save_pcix_state(struct pci_dev *dev)
|
||||||
if (pos <= 0)
|
if (pos <= 0)
|
||||||
return 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)
|
if (!save_state)
|
||||||
save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
|
save_state = kzalloc(sizeof(*save_state) + sizeof(u16), GFP_KERNEL);
|
||||||
if (!save_state) {
|
if (!save_state) {
|
||||||
|
|
Loading…
Reference in a new issue