|
@@ -204,8 +204,13 @@ static void cx_auto_reboot_notify(struct hda_codec *codec)
|
|
|
{
|
|
|
struct conexant_spec *spec = codec->spec;
|
|
|
|
|
|
- if (codec->core.vendor_id != 0x14f150f2)
|
|
|
+ switch (codec->core.vendor_id) {
|
|
|
+ case 0x14f150f2: /* CX20722 */
|
|
|
+ case 0x14f150f4: /* CX20724 */
|
|
|
+ break;
|
|
|
+ default:
|
|
|
return;
|
|
|
+ }
|
|
|
|
|
|
/* Turn the CX20722 codec into D3 to avoid spurious noises
|
|
|
from the internal speaker during (and after) reboot */
|