Skip to content

Commit

Permalink
video: imxfb: Make local symbols static
Browse files Browse the repository at this point in the history
These symbols are used only in this file.
Make them static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
  • Loading branch information
Sachin Kamat authored and Tomi Valkeinen committed Jun 26, 2013
1 parent 21810ee commit 486dd6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/imxfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ static int imxfb_remove(struct platform_device *pdev)
return 0;
}

void imxfb_shutdown(struct platform_device * dev)
static void imxfb_shutdown(struct platform_device *dev)
{
struct fb_info *info = platform_get_drvdata(dev);
struct imxfb_info *fbi = info->par;
Expand Down Expand Up @@ -996,7 +996,7 @@ static int imxfb_setup(void)
return 0;
}

int __init imxfb_init(void)
static int __init imxfb_init(void)
{
int ret = imxfb_setup();

Expand Down

0 comments on commit 486dd6d

Please sign in to comment.