Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6

* '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)

+2 -4
+2 -4
drivers/firewire/fw-ohci.c
··· 1945 1945 return err; 1946 1946 } 1947 1947 err = pci_set_power_state(pdev, pci_choose_state(pdev, state)); 1948 - if (err) { 1949 - fw_error("pci_set_power_state failed\n"); 1950 - return err; 1951 - } 1948 + if (err) 1949 + fw_error("pci_set_power_state failed with %d\n", err); 1952 1950 1953 1951 return 0; 1954 1952 }