Index: alsa-driver-1.0.22.1+dfsg/alsa-kernel/pci/intel8x0.c =================================================================== --- alsa-driver-1.0.22.1+dfsg.orig/alsa-kernel/pci/intel8x0.c 2009-12-30 19:06:57.000000000 -0500 +++ alsa-driver-1.0.22.1+dfsg/alsa-kernel/pci/intel8x0.c 2009-12-30 19:07:58.000000000 -0500 @@ -2615,6 +2615,13 @@ * after S2RAM. So, don't touch it. */ /* pci_set_power_state(pci, pci_choose_state(pci, state)); */ + + /* Quirk support for HP nw8240 and HP NC6220, LP #151111 */ + if ((pci->subsystem_vendor == 0x103c) && + ((pci->subsystem_device == 0x0934) || + (pci->subsystem_device == 0x0944))) { + pci_set_power_state(pci, pci_choose_state(pci, state)); + } return 0; }