Commit f629ddc9 authored by Bjorn Helgaas's avatar Bjorn Helgaas

Merge branch 'pci/pm'

  - Print config space before suspend for debugging (Chen Yu)

* pci/pm:
  PCI/PM: Print config space of devices before suspend
parents 4161953f 47b802d5
...@@ -1372,8 +1372,11 @@ int pci_save_state(struct pci_dev *dev) ...@@ -1372,8 +1372,11 @@ int pci_save_state(struct pci_dev *dev)
{ {
int i; int i;
/* XXX: 100% dword access ok here? */ /* XXX: 100% dword access ok here? */
for (i = 0; i < 16; i++) for (i = 0; i < 16; i++) {
pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]); pci_read_config_dword(dev, i * 4, &dev->saved_config_space[i]);
pci_dbg(dev, "saving config space at offset %#x (reading %#x)\n",
i * 4, dev->saved_config_space[i]);
}
dev->state_saved = true; dev->state_saved = true;
i = pci_save_pcie_state(dev); i = pci_save_pcie_state(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment