gma500: oaktrail_crtc: mark few functions as static

Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Kirill A. Shutemov 2012-03-08 16:12:04 +00:00 committed by Dave Airlie
parent cbc5a1850d
commit 44332ddfeb
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ static void oaktrail_clock(int refclk, struct oaktrail_clock_t *clock)
clock->dot = (refclk * clock->m) / (14 * clock->p1); clock->dot = (refclk * clock->m) / (14 * clock->p1);
} }
void mrstPrintPll(char *prefix, struct oaktrail_clock_t *clock) static void mrstPrintPll(char *prefix, struct oaktrail_clock_t *clock)
{ {
pr_debug("%s: dotclock = %d, m = %d, p1 = %d.\n", pr_debug("%s: dotclock = %d, m = %d, p1 = %d.\n",
prefix, clock->dot, clock->m, clock->p1); prefix, clock->dot, clock->m, clock->p1);
@ -514,7 +514,7 @@ static bool oaktrail_crtc_mode_fixup(struct drm_crtc *crtc,
return true; return true;
} }
int oaktrail_pipe_set_base(struct drm_crtc *crtc, static int oaktrail_pipe_set_base(struct drm_crtc *crtc,
int x, int y, struct drm_framebuffer *old_fb) int x, int y, struct drm_framebuffer *old_fb)
{ {
struct drm_device *dev = crtc->dev; struct drm_device *dev = crtc->dev;