drm/udl: Make udl_crtc_init() static

Fixes the following sparse warning:
drivers/gpu/drm/udl/udl_modeset.c:394:5: warning:
symbol 'udl_crtc_init' was not declared. Should it be static?

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Sachin Kamat 2012-09-22 07:05:21 +00:00 committed by Dave Airlie
parent 9278006249
commit 8d42a91915
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ static const struct drm_crtc_funcs udl_crtc_funcs = {
.destroy = udl_crtc_destroy,
};
int udl_crtc_init(struct drm_device *dev)
static int udl_crtc_init(struct drm_device *dev)
{
struct drm_crtc *crtc;