public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: Add missing const to audio_rate_need_prog()
@ 2015-09-30  7:45 Takashi Iwai
  2015-09-30 12:31 ` Daniel Vetter
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2015-09-30  7:45 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx, alsa-devel

The lack of const leads to a compile warning after merging i915
upstream tree:
   drivers/gpu/drm/i915/intel_audio.c:147:13: note: expected 'struct drm_display_mode *' but argument is of type 'const struct drm_display_mode *'

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 drivers/gpu/drm/i915/intel_audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/intel_audio.c b/drivers/gpu/drm/i915/intel_audio.c
index 30f6859dcb36..dffd0b4c5f17 100644
--- a/drivers/gpu/drm/i915/intel_audio.c
+++ b/drivers/gpu/drm/i915/intel_audio.c
@@ -144,7 +144,7 @@ static uint32_t audio_config_setup_n_reg(int n, uint32_t val)
 
 /* check whether N/CTS/M need be set manually */
 static bool audio_rate_need_prog(struct intel_crtc *crtc,
-					struct drm_display_mode *mode)
+				 const struct drm_display_mode *mode)
 {
 	if (((mode->clock == TMDS_297M) ||
 		 (mode->clock == TMDS_296M)) &&
-- 
2.5.3

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/i915: Add missing const to audio_rate_need_prog()
  2015-09-30  7:45 [PATCH] drm/i915: Add missing const to audio_rate_need_prog() Takashi Iwai
@ 2015-09-30 12:31 ` Daniel Vetter
  2015-09-30 12:38   ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Vetter @ 2015-09-30 12:31 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Daniel Vetter, intel-gfx, alsa-devel

On Wed, Sep 30, 2015 at 09:45:03AM +0200, Takashi Iwai wrote:
> The lack of const leads to a compile warning after merging i915
> upstream tree:
>    drivers/gpu/drm/i915/intel_audio.c:147:13: note: expected 'struct drm_display_mode *' but argument is of type 'const struct drm_display_mode *'
> 
> Reported-by: kbuild test robot <fengguang.wu@intel.com>
> Signed-off-by: Takashi Iwai <tiwai@suse.de>

Yup, I have that in my merge resolution in drm-intel-nightly when pull in
your sound tree.

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>

Atm I don't see a need for another merge on my side, I'll ping you when
that happens. So probably simplest to apply this to the sound tree.

Cheers, Daniel
> ---
>  drivers/gpu/drm/i915/intel_audio.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_audio.c b/drivers/gpu/drm/i915/intel_audio.c
> index 30f6859dcb36..dffd0b4c5f17 100644
> --- a/drivers/gpu/drm/i915/intel_audio.c
> +++ b/drivers/gpu/drm/i915/intel_audio.c
> @@ -144,7 +144,7 @@ static uint32_t audio_config_setup_n_reg(int n, uint32_t val)
>  
>  /* check whether N/CTS/M need be set manually */
>  static bool audio_rate_need_prog(struct intel_crtc *crtc,
> -					struct drm_display_mode *mode)
> +				 const struct drm_display_mode *mode)
>  {
>  	if (((mode->clock == TMDS_297M) ||
>  		 (mode->clock == TMDS_296M)) &&
> -- 
> 2.5.3
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/i915: Add missing const to audio_rate_need_prog()
  2015-09-30 12:31 ` Daniel Vetter
@ 2015-09-30 12:38   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2015-09-30 12:38 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Daniel Vetter, intel-gfx, alsa-devel

On Wed, 30 Sep 2015 14:31:31 +0200,
Daniel Vetter wrote:
> 
> On Wed, Sep 30, 2015 at 09:45:03AM +0200, Takashi Iwai wrote:
> > The lack of const leads to a compile warning after merging i915
> > upstream tree:
> >    drivers/gpu/drm/i915/intel_audio.c:147:13: note: expected 'struct drm_display_mode *' but argument is of type 'const struct drm_display_mode *'
> > 
> > Reported-by: kbuild test robot <fengguang.wu@intel.com>
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
> 
> Yup, I have that in my merge resolution in drm-intel-nightly when pull in
> your sound tree.
> 
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
> Atm I don't see a need for another merge on my side, I'll ping you when
> that happens. So probably simplest to apply this to the sound tree.

OK, done.


thanks,

Takashi
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-30 12:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-30  7:45 [PATCH] drm/i915: Add missing const to audio_rate_need_prog() Takashi Iwai
2015-09-30 12:31 ` Daniel Vetter
2015-09-30 12:38   ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox