From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Jani Nikula <jani.nikula@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: remove an extra level of indirection in PCI ID list
Date: Wed, 28 Oct 2015 14:55:06 +0200 [thread overview]
Message-ID: <20151028125506.GQ4437@intel.com> (raw)
In-Reply-To: <1446033250-7277-1-git-send-email-jani.nikula@intel.com>
On Wed, Oct 28, 2015 at 01:54:10PM +0200, Jani Nikula wrote:
> Add the PCI IDs directly in the pciidlist array instead of defining an
> extra macro. The minor benefit from this is neater diffs when adding to
> the end of the list.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
I was tempted to do this mysefl a few times, but lazyness always won.
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/i915_drv.c | 71 ++++++++++++++++++++---------------------
> 1 file changed, 34 insertions(+), 37 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index b1f1dec05274..4af97598c377 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -400,44 +400,41 @@ static const struct intel_device_info intel_broxton_info = {
> * and subvendor IDs, we need it to come before the more general IVB
> * PCI ID matches, otherwise we'll use the wrong info struct above.
> */
> -#define INTEL_PCI_IDS \
> - INTEL_I830_IDS(&intel_i830_info), \
> - INTEL_I845G_IDS(&intel_845g_info), \
> - INTEL_I85X_IDS(&intel_i85x_info), \
> - INTEL_I865G_IDS(&intel_i865g_info), \
> - INTEL_I915G_IDS(&intel_i915g_info), \
> - INTEL_I915GM_IDS(&intel_i915gm_info), \
> - INTEL_I945G_IDS(&intel_i945g_info), \
> - INTEL_I945GM_IDS(&intel_i945gm_info), \
> - INTEL_I965G_IDS(&intel_i965g_info), \
> - INTEL_G33_IDS(&intel_g33_info), \
> - INTEL_I965GM_IDS(&intel_i965gm_info), \
> - INTEL_GM45_IDS(&intel_gm45_info), \
> - INTEL_G45_IDS(&intel_g45_info), \
> - INTEL_PINEVIEW_IDS(&intel_pineview_info), \
> - INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info), \
> - INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info), \
> - INTEL_SNB_D_IDS(&intel_sandybridge_d_info), \
> - INTEL_SNB_M_IDS(&intel_sandybridge_m_info), \
> - INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */ \
> - INTEL_IVB_M_IDS(&intel_ivybridge_m_info), \
> - INTEL_IVB_D_IDS(&intel_ivybridge_d_info), \
> - INTEL_HSW_D_IDS(&intel_haswell_d_info), \
> - INTEL_HSW_M_IDS(&intel_haswell_m_info), \
> - INTEL_VLV_M_IDS(&intel_valleyview_m_info), \
> - INTEL_VLV_D_IDS(&intel_valleyview_d_info), \
> - INTEL_BDW_GT12M_IDS(&intel_broadwell_m_info), \
> - INTEL_BDW_GT12D_IDS(&intel_broadwell_d_info), \
> - INTEL_BDW_GT3M_IDS(&intel_broadwell_gt3m_info), \
> - INTEL_BDW_GT3D_IDS(&intel_broadwell_gt3d_info), \
> - INTEL_CHV_IDS(&intel_cherryview_info), \
> - INTEL_SKL_GT1_IDS(&intel_skylake_info), \
> - INTEL_SKL_GT2_IDS(&intel_skylake_info), \
> - INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info), \
> - INTEL_BXT_IDS(&intel_broxton_info)
> -
> static const struct pci_device_id pciidlist[] = { /* aka */
Not sure what that comment is meant to signifiy. Maybe kill it while at
it?
> - INTEL_PCI_IDS,
> + INTEL_I830_IDS(&intel_i830_info),
> + INTEL_I845G_IDS(&intel_845g_info),
> + INTEL_I85X_IDS(&intel_i85x_info),
> + INTEL_I865G_IDS(&intel_i865g_info),
> + INTEL_I915G_IDS(&intel_i915g_info),
> + INTEL_I915GM_IDS(&intel_i915gm_info),
> + INTEL_I945G_IDS(&intel_i945g_info),
> + INTEL_I945GM_IDS(&intel_i945gm_info),
> + INTEL_I965G_IDS(&intel_i965g_info),
> + INTEL_G33_IDS(&intel_g33_info),
> + INTEL_I965GM_IDS(&intel_i965gm_info),
> + INTEL_GM45_IDS(&intel_gm45_info),
> + INTEL_G45_IDS(&intel_g45_info),
> + INTEL_PINEVIEW_IDS(&intel_pineview_info),
> + INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info),
> + INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info),
> + INTEL_SNB_D_IDS(&intel_sandybridge_d_info),
> + INTEL_SNB_M_IDS(&intel_sandybridge_m_info),
> + INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */
> + INTEL_IVB_M_IDS(&intel_ivybridge_m_info),
> + INTEL_IVB_D_IDS(&intel_ivybridge_d_info),
> + INTEL_HSW_D_IDS(&intel_haswell_d_info),
> + INTEL_HSW_M_IDS(&intel_haswell_m_info),
> + INTEL_VLV_M_IDS(&intel_valleyview_m_info),
> + INTEL_VLV_D_IDS(&intel_valleyview_d_info),
> + INTEL_BDW_GT12M_IDS(&intel_broadwell_m_info),
> + INTEL_BDW_GT12D_IDS(&intel_broadwell_d_info),
> + INTEL_BDW_GT3M_IDS(&intel_broadwell_gt3m_info),
> + INTEL_BDW_GT3D_IDS(&intel_broadwell_gt3d_info),
> + INTEL_CHV_IDS(&intel_cherryview_info),
> + INTEL_SKL_GT1_IDS(&intel_skylake_info),
> + INTEL_SKL_GT2_IDS(&intel_skylake_info),
> + INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info),
> + INTEL_BXT_IDS(&intel_broxton_info),
> {0, 0, 0}
> };
>
> --
> 2.1.4
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-10-28 12:55 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-28 11:54 [PATCH] drm/i915: remove an extra level of indirection in PCI ID list Jani Nikula
2015-10-28 12:55 ` Ville Syrjälä [this message]
2015-10-28 17:33 ` [PATCH v2] " Jani Nikula
2015-10-28 17:52 ` Jani Nikula
2015-10-28 19:26 ` Rodrigo Vivi
2015-10-28 19:32 ` Jani Nikula
2015-10-28 19:38 ` Rodrigo Vivi
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=20151028125506.GQ4437@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.