public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2] drm/i915: remove an extra level of indirection in PCI ID list
Date: Wed, 28 Oct 2015 19:52:00 +0200	[thread overview]
Message-ID: <87bnbi51a7.fsf@intel.com> (raw)
In-Reply-To: <1446053589-21283-1-git-send-email-jani.nikula@intel.com>

On Wed, 28 Oct 2015, Jani Nikula <jani.nikula@intel.com> 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.
>
> v2: drop the "aka" comment (Ville)
>
> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

and pushed, thanks for the review.

BR,
Jani.

> ---
>  drivers/gpu/drm/i915/i915_drv.c | 73 ++++++++++++++++++++---------------------
>  1 file changed, 35 insertions(+), 38 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index b1f1dec05274..121c5394fa51 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 */
> -	INTEL_PCI_IDS,
> +static const struct pci_device_id pciidlist[] = {
> +	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
>

-- 
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2015-10-28 17:52 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ä
2015-10-28 17:33   ` [PATCH v2] " Jani Nikula
2015-10-28 17:52     ` Jani Nikula [this message]
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=87bnbi51a7.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.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