Commit 7b43a373 authored by Jani Nikula's avatar Jani Nikula

drm/i915/pciids: add INTEL_SNB_IDS()

Add INTEL_SNB_IDS() to identify all SNBs.

Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: linux-pci@vger.kernel.org
Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Link: https://patchwork.freedesktop.org/patch/msgid/ffcb2d954ad9bca78ccd39836dc0a3dc7c6c0253.1715340032.git.jani.nikula@intel.comSigned-off-by: default avatarJani Nikula <jani.nikula@intel.com>
parent 41c0f8a3
...@@ -534,8 +534,7 @@ static const struct pci_device_id intel_early_ids[] __initconst = { ...@@ -534,8 +534,7 @@ static const struct pci_device_id intel_early_ids[] __initconst = {
INTEL_GM45_IDS(&gen3_early_ops), INTEL_GM45_IDS(&gen3_early_ops),
INTEL_G45_IDS(&gen3_early_ops), INTEL_G45_IDS(&gen3_early_ops),
INTEL_ILK_IDS(&gen3_early_ops), INTEL_ILK_IDS(&gen3_early_ops),
INTEL_SNB_D_IDS(&gen6_early_ops), INTEL_SNB_IDS(&gen6_early_ops),
INTEL_SNB_M_IDS(&gen6_early_ops),
INTEL_IVB_M_IDS(&gen6_early_ops), INTEL_IVB_M_IDS(&gen6_early_ops),
INTEL_IVB_D_IDS(&gen6_early_ops), INTEL_IVB_D_IDS(&gen6_early_ops),
INTEL_HSW_IDS(&gen6_early_ops), INTEL_HSW_IDS(&gen6_early_ops),
......
...@@ -818,8 +818,7 @@ static const struct { ...@@ -818,8 +818,7 @@ static const struct {
INTEL_PNV_IDS(&pnv_display), INTEL_PNV_IDS(&pnv_display),
INTEL_ILK_D_IDS(&ilk_d_display), INTEL_ILK_D_IDS(&ilk_d_display),
INTEL_ILK_M_IDS(&ilk_m_display), INTEL_ILK_M_IDS(&ilk_m_display),
INTEL_SNB_D_IDS(&snb_display), INTEL_SNB_IDS(&snb_display),
INTEL_SNB_M_IDS(&snb_display),
INTEL_IVB_M_IDS(&ivb_display), INTEL_IVB_M_IDS(&ivb_display),
INTEL_IVB_D_IDS(&ivb_display), INTEL_IVB_D_IDS(&ivb_display),
INTEL_HSW_IDS(&hsw_display), INTEL_HSW_IDS(&hsw_display),
......
...@@ -151,6 +151,10 @@ ...@@ -151,6 +151,10 @@
INTEL_SNB_M_GT1_IDS(info), \ INTEL_SNB_M_GT1_IDS(info), \
INTEL_SNB_M_GT2_IDS(info) INTEL_SNB_M_GT2_IDS(info)
#define INTEL_SNB_IDS(info) \
INTEL_SNB_D_IDS(info), \
INTEL_SNB_M_IDS(info)
#define INTEL_IVB_M_GT1_IDS(info) \ #define INTEL_IVB_M_GT1_IDS(info) \
INTEL_VGA_DEVICE(0x0156, info) /* GT1 mobile */ INTEL_VGA_DEVICE(0x0156, info) /* GT1 mobile */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment