[PATCH] drm/i915/quirks: make intel_dpcd_quirks const

Ville Syrjälä ville.syrjala at linux.intel.com
Thu Sep 19 18:34:10 UTC 2024


On Thu, Sep 19, 2024 at 06:33:54PM +0300, Jani Nikula wrote:
> The array can be in rodate, make it const.
> 
> Signed-off-by: Jani Nikula <jani.nikula at intel.com>

Reviewed-by: Ville Syrjälä <ville.syrjala at linux.intel.com>

> ---
>  drivers/gpu/drm/i915/display/intel_quirks.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_quirks.c b/drivers/gpu/drm/i915/display/intel_quirks.c
> index 29b56d53a340..28f497ae785b 100644
> --- a/drivers/gpu/drm/i915/display/intel_quirks.c
> +++ b/drivers/gpu/drm/i915/display/intel_quirks.c
> @@ -231,7 +231,7 @@ static struct intel_quirk intel_quirks[] = {
>  	{ 0x0f31, 0x103c, 0x220f, quirk_invert_brightness },
>  };
>  
> -static struct intel_dpcd_quirk intel_dpcd_quirks[] = {
> +static const struct intel_dpcd_quirk intel_dpcd_quirks[] = {
>  	/* Dell Precision 5490 */
>  	{
>  		.device = 0x7d55,
> @@ -272,7 +272,7 @@ void intel_init_dpcd_quirks(struct intel_dp *intel_dp,
>  	int i;
>  
>  	for (i = 0; i < ARRAY_SIZE(intel_dpcd_quirks); i++) {
> -		struct intel_dpcd_quirk *q = &intel_dpcd_quirks[i];
> +		const struct intel_dpcd_quirk *q = &intel_dpcd_quirks[i];
>  
>  		if (d->device == q->device &&
>  		    (d->subsystem_vendor == q->subsystem_vendor ||
> -- 
> 2.39.2

-- 
Ville Syrjälä
Intel


More information about the Intel-gfx mailing list