diff options
Diffstat (limited to 'drivers/pci')
-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 cd9b375f49d5..0bc27e059019 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -850,7 +850,7 @@ pci_save_state(struct pci_dev *dev) | |||
850 | int i; | 850 | int i; |
851 | /* XXX: 100% dword access ok here? */ | 851 | /* XXX: 100% dword access ok here? */ |
852 | for (i = 0; i < 16; i++) | 852 | for (i = 0; i < 16; i++) |
853 | pci_read_config_dword(dev, i * 4,&dev->saved_config_space[i]); | 853 | pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]); |
854 | dev->state_saved = true; | 854 | dev->state_saved = true; |
855 | if ((i = pci_save_pcie_state(dev)) != 0) | 855 | if ((i = pci_save_pcie_state(dev)) != 0) |
856 | return i; | 856 | return i; |