Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e032d93e authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6:
  firewire: fw-ohci: ignore failure of pci_set_power_state (fix suspend regression)
parents b1a8d700 55111428
Loading
Loading
Loading
Loading
+2 −4
Original line number Original line Diff line number Diff line
@@ -1945,10 +1945,8 @@ static int pci_suspend(struct pci_dev *pdev, pm_message_t state)
		return err;
		return err;
	}
	}
	err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
	err = pci_set_power_state(pdev, pci_choose_state(pdev, state));
	if (err) {
	if (err)
		fw_error("pci_set_power_state failed\n");
		fw_error("pci_set_power_state failed with %d\n", err);
		return err;
	}


	return 0;
	return 0;
}
}