Commit ea7f7abc authored by Sachin Kamat's avatar Sachin Kamat Committed by Dave Airlie

drm: Add missing static storage class specifier in drm_irq.c file

Fixes the following sparse warning:
drivers/gpu/drm/drm_irq.c:1239:6:
warning: symbol 'drm_handle_vblank_events' was not declared. Should it be static?
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 0227a7fd
...@@ -1236,7 +1236,7 @@ int drm_wait_vblank(struct drm_device *dev, void *data, ...@@ -1236,7 +1236,7 @@ int drm_wait_vblank(struct drm_device *dev, void *data,
return ret; return ret;
} }
void drm_handle_vblank_events(struct drm_device *dev, int crtc) static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
{ {
struct drm_pending_vblank_event *e, *t; struct drm_pending_vblank_event *e, *t;
struct timeval now; struct timeval now;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment