From nobody Mon Feb 9 17:35:23 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3F803EB64DC for ; Tue, 11 Jul 2023 12:57:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231917AbjGKM5k (ORCPT ); Tue, 11 Jul 2023 08:57:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57928 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231441AbjGKM5f (ORCPT ); Tue, 11 Jul 2023 08:57:35 -0400 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1556698; Tue, 11 Jul 2023 05:57:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1689080245; x=1720616245; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vinqnO46VRRCtcTS7KWV2T0847JFuBFICYgZjG0DVDI=; b=Q49qXIcyF7QsCQoLM4RmiKzksMsG0wAzohNmYV3X4+iGryHbcrApXbHR WxDDnfOyZZetyl2/KTEaCDf9CwbI5y1zfmTtYg5C6srE7X/ga9BANqZuu QVyH7B2mLaoJWfYh5H5EGUf848oo85un/8RBFeR7gq8mSZBvYkJHKGD7/ BMMf4AjYzXSxxDTj+eAN33GEMHx0bCa2MTtx+BG79eZ3YgzCUdCIQbWBl zuEGnPvrKK3/w93nHdhUlQPDMtf18DlPVDnlWD8PMCGasosCflfi5oGAY pJq6MMDw3iSGo72grC7aXMXCnV0euyZfWkr9kyErpfjxEhFkLNS1mW5K0 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10768"; a="367187400" X-IronPort-AV: E=Sophos;i="6.01,196,1684825200"; d="scan'208";a="367187400" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Jul 2023 05:57:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10768"; a="834666551" X-IronPort-AV: E=Sophos;i="6.01,196,1684825200"; d="scan'208";a="834666551" Received: from dev2 (HELO DEV2.igk.intel.com) ([10.237.148.94]) by fmsmga002.fm.intel.com with ESMTP; 11 Jul 2023 05:57:16 -0700 From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= To: Bjorn Helgaas , Mark Brown , Takashi Iwai Cc: alsa-devel@alsa-project.org, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, Cezary Rojewski , Pierre-Louis Bossart , Kai Vehmanen , Andy Shevchenko , Hans de Goede , =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= Subject: [PATCH 04/13] ALSA: hda: Use global PCI match macro Date: Tue, 11 Jul 2023 14:57:17 +0200 Message-Id: <20230711125726.3509391-5-amadeuszx.slawinski@linux.intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230711125726.3509391-1-amadeuszx.slawinski@linux.intel.com> References: <20230711125726.3509391-1-amadeuszx.slawinski@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Instead of using local macro to match PCI device, use global one. Signed-off-by: Amadeusz S=C5=82awi=C5=84ski --- sound/pci/hda/hda_intel.c | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index ef831770ca7d..143efa54b9bf 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -330,18 +330,6 @@ enum { #define needs_eld_notify_link(chip) false #endif =20 -#define CONTROLLER_IN_GPU(pci) (((pci)->vendor =3D=3D 0x8086) && \ - (((pci)->device =3D=3D 0x0a0c) || \ - ((pci)->device =3D=3D 0x0c0c) || \ - ((pci)->device =3D=3D 0x0d0c) || \ - ((pci)->device =3D=3D 0x160c) || \ - ((pci)->device =3D=3D 0x490d) || \ - ((pci)->device =3D=3D 0x4f90) || \ - ((pci)->device =3D=3D 0x4f91) || \ - ((pci)->device =3D=3D 0x4f92))) - -#define IS_BXT(pci) ((pci)->vendor =3D=3D 0x8086 && (pci)->device =3D=3D 0= x5a98) - static const char * const driver_short_names[] =3D { [AZX_DRIVER_ICH] =3D "HDA Intel", [AZX_DRIVER_PCH] =3D "HDA Intel PCH", @@ -573,7 +561,7 @@ static void hda_intel_init_chip(struct azx *chip, bool = full_reset) snd_hdac_set_codec_wakeup(bus, false); =20 /* reduce dma latency to avoid noise */ - if (IS_BXT(pci)) + if (HDA_CONTROLLER_IS_APL(pci)) bxt_reduce_dma_latency(chip); =20 if (bus->mlcap !=3D NULL) @@ -2175,7 +2163,7 @@ static int azx_probe(struct pci_dev *pci, #endif /* CONFIG_SND_HDA_PATCH_LOADER */ =20 #ifndef CONFIG_SND_HDA_I915 - if (CONTROLLER_IN_GPU(pci)) + if (HDA_CONTROLLER_IN_GPU(pci)) dev_err(card->dev, "Haswell/Broadwell HDMI/DP must build in CONFIG_SND_H= DA_I915\n"); #endif =20 @@ -2283,7 +2271,7 @@ static int azx_probe_continue(struct azx *chip) * for other chips, still continue probing as other * codecs can be on the same link. */ - if (CONTROLLER_IN_GPU(pci)) { + if (HDA_CONTROLLER_IN_GPU(pci)) { dev_err(chip->card->dev, "HSW/BDW HD-audio HDMI/DP requires binding with gfx driver\n"); goto out_free; @@ -2294,7 +2282,7 @@ static int azx_probe_continue(struct azx *chip) } =20 /* HSW/BDW controllers need this power */ - if (CONTROLLER_IN_GPU(pci)) + if (HDA_CONTROLLER_IN_GPU(pci)) hda->need_i915_power =3D true; } =20 --=20 2.34.1