Re: [PATCH] fix tulip suspend/resume

From: Benjamin Herrenschmidt
Date: Tue Jun 07 2005 - 19:31:53 EST


> pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state)
> {
> if (!pci_find_capability(dev, PCI_CAP_ID_PM))
> return PCI_D0;
>
> switch (state) {
> case 0: return PCI_D0;
> case 3: return PCI_D3hot;
> default:
> printk("They asked me for state %d\n", state);
> BUG();
> }
> return PCI_D0;
> }

Gack ! I need to remember to fix that one before I change PMSG_FREEZE
definition to be different than PMSG_SUSPEND upstream.

Pavel, do you know that there are other ways to deal with errors than
just BUG()'ing all over the place ? :)

Ben.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/