From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Jani Nikula <jani.nikula@intel.com>
Cc: <igt-dev@lists.freedesktop.org>
Subject: Re: [PATCH i-g-t 07/10] lib: sync i915_pciids.h with kernel commit 7858cc0b55e3
Date: Wed, 22 May 2024 12:12:25 -0400 [thread overview]
Message-ID: <Zk4ZaQgGKqpW6wnM@intel.com> (raw)
In-Reply-To: <f01a84905a1659e2ac0cb2fc657c776428aa3ef5.1716373923.git.jani.nikula@intel.com>
On Wed, May 22, 2024 at 01:35:20PM +0300, Jani Nikula wrote:
> Synchronize i915_pciids.h with kernel commit:
>
> 7858cc0b55e3 ("drm/i915/pciids: remove 12 from INTEL_TGL_IDS()")
>
> and update the references in intel_device_info.c.
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> lib/i915_pciids.h | 10 +++++-----
> lib/intel_device_info.c | 4 ++--
> 2 files changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
> index ecfd7f71e2e7..42913d2eb655 100644
> --- a/lib/i915_pciids.h
> +++ b/lib/i915_pciids.h
> @@ -620,12 +620,12 @@
> INTEL_VGA_DEVICE(0x4E71, info)
>
> /* TGL */
> -#define INTEL_TGL_12_GT1_IDS(info) \
> +#define INTEL_TGL_GT1_IDS(info) \
> INTEL_VGA_DEVICE(0x9A60, info), \
> INTEL_VGA_DEVICE(0x9A68, info), \
> INTEL_VGA_DEVICE(0x9A70, info)
>
> -#define INTEL_TGL_12_GT2_IDS(info) \
> +#define INTEL_TGL_GT2_IDS(info) \
> INTEL_VGA_DEVICE(0x9A40, info), \
> INTEL_VGA_DEVICE(0x9A49, info), \
> INTEL_VGA_DEVICE(0x9A59, info), \
> @@ -635,9 +635,9 @@
> INTEL_VGA_DEVICE(0x9AD9, info), \
> INTEL_VGA_DEVICE(0x9AF8, info)
>
> -#define INTEL_TGL_12_IDS(info) \
> - INTEL_TGL_12_GT1_IDS(info), \
> - INTEL_TGL_12_GT2_IDS(info)
> +#define INTEL_TGL_IDS(info) \
> + INTEL_TGL_GT1_IDS(info), \
> + INTEL_TGL_GT2_IDS(info)
>
> /* RKL */
> #define INTEL_RKL_IDS(info) \
> diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> index 79e3796dbefe..b1eec572dd82 100644
> --- a/lib/intel_device_info.c
> +++ b/lib/intel_device_info.c
> @@ -599,8 +599,8 @@ static const struct pci_id_match intel_device_match[] = {
> INTEL_EHL_IDS(&intel_elkhartlake_info),
> INTEL_JSL_IDS(&intel_jasperlake_info),
>
> - INTEL_TGL_12_GT1_IDS(&intel_tigerlake_gt1_info),
> - INTEL_TGL_12_GT2_IDS(&intel_tigerlake_gt2_info),
> + INTEL_TGL_GT1_IDS(&intel_tigerlake_gt1_info),
> + INTEL_TGL_GT2_IDS(&intel_tigerlake_gt2_info),
> INTEL_RKL_IDS(&intel_rocketlake_info),
>
> INTEL_DG1_IDS(&intel_dg1_info),
> --
> 2.39.2
>
next prev parent reply other threads:[~2024-05-22 16:12 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-22 10:35 [PATCH i-g-t 00/10] lib: sync i915_pciids.h and _local.h with kernel Jani Nikula
2024-05-22 10:35 ` [PATCH i-g-t 01/10] lib: sync i915_pciids.h with kernel commit 432ed92bfb55 Jani Nikula
2024-05-22 16:06 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 02/10] lib: sync i915_pciids.h with kernel commit 41c0f8a36f15 Jani Nikula
2024-05-22 16:07 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 03/10] lib: sync i915_pciids.h with kernel commit 7b43a37348b7 Jani Nikula
2024-05-22 16:09 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 04/10] lib: sync i915_pciids.h with kernel commit 5c8c22adc802 Jani Nikula
2024-05-22 16:10 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 05/10] lib: sync i915_pciids.h with kernel commit aa3d586e1624 Jani Nikula
2024-05-22 16:11 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 06/10] lib: sync i915_pciids.h with kernel commit bfbda4722767 Jani Nikula
2024-05-22 16:11 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 07/10] lib: sync i915_pciids.h with kernel commit 7858cc0b55e3 Jani Nikula
2024-05-22 16:12 ` Rodrigo Vivi [this message]
2024-05-22 10:35 ` [PATCH i-g-t 08/10] lib: sync i915_pciids.h with kernel commit d2c4b1db1c4f Jani Nikula
2024-05-22 16:13 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 09/10] lib: sync i915_pciids.h with kernel commit cfa7772880f8 Jani Nikula
2024-05-22 16:19 ` Rodrigo Vivi
2024-05-22 10:35 ` [PATCH i-g-t 10/10] lib: switch i915_pciids_local.h to xe driver style PCI ID macros Jani Nikula
2024-05-22 16:21 ` Rodrigo Vivi
2024-05-22 17:13 ` Jani Nikula
2024-05-22 17:15 ` Rodrigo Vivi
2024-05-22 12:40 ` ✓ Fi.CI.BAT: success for lib: sync i915_pciids.h and _local.h with kernel Patchwork
2024-05-22 13:34 ` ✓ CI.xeBAT: " Patchwork
2024-05-22 17:22 ` ✗ CI.xeFULL: failure " Patchwork
2024-05-23 14:10 ` Kamil Konieczny
2024-05-23 5:20 ` ✗ Fi.CI.IGT: " Patchwork
2024-05-23 14:11 ` Kamil Konieczny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zk4ZaQgGKqpW6wnM@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox