On Wed, Jun 26, 2019 at 11:42:12PM +0100, Chris Wilson wrote: > drivers/gpu/drm/i915/i915_irq.c:3382:6: warning: symbol 'i945gm_vblank_work_func' was not declared. Should it be static? > CC [M] drivers/gpu/drm/i915/i915_irq.o > drivers/gpu/drm/i915/i915_irq.c:3382:6: error: no previous prototype for ‘i945gm_vblank_work_func’ [-Werror=missing-prototypes] > void i945gm_vblank_work_func(struct work_struct *work) > > Signed-off-by: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> > Cc: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx> > --- > drivers/gpu/drm/i915/i915_irq.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c > index 1b83d6e2ae69..73f0338faf9f 100644 > --- a/drivers/gpu/drm/i915/i915_irq.c > +++ b/drivers/gpu/drm/i915/i915_irq.c > @@ -3379,7 +3379,7 @@ void bdw_disable_vblank(struct drm_crtc *crtc) > spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags); > } > > -void i945gm_vblank_work_func(struct work_struct *work) > +static void i945gm_vblank_work_func(struct work_struct *work) Whoops. I was a bit too greedy when removing the statics. Reviewed-by: Ville Syrjälä <ville.syrjala@xxxxxxxxxxxxxxx> > { > struct drm_i915_private *dev_priv = > container_of(work, struct drm_i915_private, i945gm_vblank.work); > -- > 2.20.1 -- Ville Syrjälä Intel _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx