From patchwork Mon Feb 10 12:30:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg Kroah-Hartman X-Patchwork-Id: 232021 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 258DAC352A5 for ; Mon, 10 Feb 2020 12:37:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E910824650 for ; Mon, 10 Feb 2020 12:37:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581338227; bh=ATjVZI95HKz0joPCxO4Xw4Jaok4lNLf9bk00A4fPUa8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=vxHUBF1szlHG/PP17jqtyx5HY5A9isXGf74fCDqfB+/6YUHOqI2lOTMZQEleh84gt 5Ig8stlI+D4vsSQMXsvwqUiEIh4fe3ffIC1Dtk+oPaKzAnS3jrgeAQHeHPVIrim00s 2jNIPOluydi/T8yJT90s9qJ8G7WANTx5pp9Naax0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728632AbgBJMhG (ORCPT ); Mon, 10 Feb 2020 07:37:06 -0500 Received: from mail.kernel.org ([198.145.29.99]:57962 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728031AbgBJMhF (ORCPT ); Mon, 10 Feb 2020 07:37:05 -0500 Received: from localhost (unknown [209.37.97.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 236412173E; Mon, 10 Feb 2020 12:37:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1581338225; bh=ATjVZI95HKz0joPCxO4Xw4Jaok4lNLf9bk00A4fPUa8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R19/3niXE6vsMEyocdoWzg78ma2GGqGe1rqBegZJ/jypoIT/XpVjf6OeTTwzArErz YzUVJejty8x/kNCxttdzHsY170e7LMRWJgQXer5mIRRsrOFXh7/57CfSBed4GJdUqf UtFPy/bImPvQ1BtiMgAVXsIJZZwj9xVg7EeQAUh8= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Hans de Goede , Takashi Iwai Subject: [PATCH 5.4 063/309] ALSA: hda: Add Clevo W65_67SB the power_save blacklist Date: Mon, 10 Feb 2020 04:30:19 -0800 Message-Id: <20200210122411.999422686@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200210122406.106356946@linuxfoundation.org> References: <20200210122406.106356946@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Hans de Goede commit d8feb6080bb0c9f4d799a423d9453048fdd06990 upstream. Using HDA power-saving on the Clevo W65_67SB causes the first 0.5 seconds of audio to be missing every time audio starts playing. This commit adds the Clevo W65_67SB the power_save blacklist to avoid this issue. Cc: stable@vger.kernel.org BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1525104 Signed-off-by: Hans de Goede Link: https://lore.kernel.org/r/20200125181021.70446-1-hdegoede@redhat.com Signed-off-by: Takashi Iwai Signed-off-by: Greg Kroah-Hartman --- sound/pci/hda/hda_intel.c | 2 ++ 1 file changed, 2 insertions(+) --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2156,6 +2156,8 @@ static struct snd_pci_quirk power_save_b /* https://bugzilla.redhat.com/show_bug.cgi?id=1581607 */ SND_PCI_QUIRK(0x1558, 0x3501, "Clevo W35xSS_370SS", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1525104 */ + SND_PCI_QUIRK(0x1558, 0x6504, "Clevo W65_67SB", 0), + /* https://bugzilla.redhat.com/show_bug.cgi?id=1525104 */ SND_PCI_QUIRK(0x1028, 0x0497, "Dell Precision T3600", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1525104 */ /* Note the P55A-UD3 and Z87-D3HP share the subsys id for the HDA dev */