On Fri, May 10, 2024 at 02:22:14PM +0300, Jani Nikula wrote: > Most other PCI ID macros use platform acronyms. Follow suit for PNV. Add > INTEL_PNV_IDS() to identify all PNVs. > > Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx> > Cc: linux-pci@xxxxxxxxxxxxxxx > Signed-off-by: Jani Nikula <jani.nikula@xxxxxxxxx> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx> > --- > arch/x86/kernel/early-quirks.c | 3 +-- > drivers/gpu/drm/i915/display/intel_display_device.c | 3 +-- > drivers/gpu/drm/i915/i915_pci.c | 4 ++-- > include/drm/i915_pciids.h | 8 ++++++-- > 4 files changed, 10 insertions(+), 8 deletions(-) > > diff --git a/arch/x86/kernel/early-quirks.c b/arch/x86/kernel/early-quirks.c > index 59f4aefc6bc1..f50394a00fca 100644 > --- a/arch/x86/kernel/early-quirks.c > +++ b/arch/x86/kernel/early-quirks.c > @@ -527,8 +527,7 @@ static const struct pci_device_id intel_early_ids[] __initconst = { > INTEL_I945G_IDS(&gen3_early_ops), > INTEL_I945GM_IDS(&gen3_early_ops), > INTEL_VLV_IDS(&gen6_early_ops), > - INTEL_PINEVIEW_G_IDS(&gen3_early_ops), > - INTEL_PINEVIEW_M_IDS(&gen3_early_ops), > + INTEL_PNV_IDS(&gen3_early_ops), > INTEL_I965G_IDS(&gen3_early_ops), > INTEL_G33_IDS(&gen3_early_ops), > INTEL_I965GM_IDS(&gen3_early_ops), > diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c > index 56a2e17d7d9e..0e0f5a36507d 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_device.c > +++ b/drivers/gpu/drm/i915/display/intel_display_device.c > @@ -815,8 +815,7 @@ static const struct { > INTEL_I965GM_IDS(&i965gm_display), > INTEL_GM45_IDS(&gm45_display), > INTEL_G45_IDS(&g45_display), > - INTEL_PINEVIEW_G_IDS(&pnv_display), > - INTEL_PINEVIEW_M_IDS(&pnv_display), > + INTEL_PNV_IDS(&pnv_display), > INTEL_IRONLAKE_D_IDS(&ilk_d_display), > INTEL_IRONLAKE_M_IDS(&ilk_m_display), > INTEL_SNB_D_IDS(&snb_display), > diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c > index b5a056c9cb79..aa8593d73198 100644 > --- a/drivers/gpu/drm/i915/i915_pci.c > +++ b/drivers/gpu/drm/i915/i915_pci.c > @@ -810,8 +810,8 @@ static const struct pci_device_id pciidlist[] = { > INTEL_I965GM_IDS(&i965gm_info), > INTEL_GM45_IDS(&gm45_info), > INTEL_G45_IDS(&g45_info), > - INTEL_PINEVIEW_G_IDS(&pnv_g_info), > - INTEL_PINEVIEW_M_IDS(&pnv_m_info), > + INTEL_PNV_G_IDS(&pnv_g_info), > + INTEL_PNV_M_IDS(&pnv_m_info), > INTEL_IRONLAKE_D_IDS(&ilk_d_info), > INTEL_IRONLAKE_M_IDS(&ilk_m_info), > INTEL_SNB_D_GT1_IDS(&snb_d_gt1_info), > diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h > index 85ce33ad6e26..21942a3c823b 100644 > --- a/include/drm/i915_pciids.h > +++ b/include/drm/i915_pciids.h > @@ -108,12 +108,16 @@ > INTEL_VGA_DEVICE(0x2e42, info), /* B43_G */ \ > INTEL_VGA_DEVICE(0x2e92, info) /* B43_G.1 */ > > -#define INTEL_PINEVIEW_G_IDS(info) \ > +#define INTEL_PNV_G_IDS(info) \ > INTEL_VGA_DEVICE(0xa001, info) > > -#define INTEL_PINEVIEW_M_IDS(info) \ > +#define INTEL_PNV_M_IDS(info) \ > INTEL_VGA_DEVICE(0xa011, info) > > +#define INTEL_PNV_IDS(info) \ > + INTEL_PNV_G_IDS(info), \ > + INTEL_PNV_M_IDS(info) > + > #define INTEL_IRONLAKE_D_IDS(info) \ > INTEL_VGA_DEVICE(0x0042, info) > > -- > 2.39.2 >