diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:44 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:02:02 -0400 |
commit | 654f8d0f3d4c606b75b70bbf0b1303a6074f0788 (patch) | |
tree | d011e05a0ff0a94d423b411759bda6e3ce51c01e /drivers/video | |
parent | 6588c78bf3d2da719286a3b89f10c0e64d731c3a (diff) | |
download | u-boot-imx-654f8d0f3d4c606b75b70bbf0b1303a6074f0788.zip u-boot-imx-654f8d0f3d4c606b75b70bbf0b1303a6074f0788.tar.gz u-boot-imx-654f8d0f3d4c606b75b70bbf0b1303a6074f0788.tar.bz2 |
serial: make local functions static
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/cfb_console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/cfb_console.c b/drivers/video/cfb_console.c index 8567231..6aa50cb 100644 --- a/drivers/video/cfb_console.c +++ b/drivers/video/cfb_console.c @@ -944,7 +944,7 @@ static void parse_putc(const char c) CURSOR_SET; } -void video_putc(struct stdio_dev *dev, const char c) +static void video_putc(struct stdio_dev *dev, const char c) { #ifdef CONFIG_CFB_CONSOLE_ANSI int i; @@ -1158,7 +1158,7 @@ void video_putc(struct stdio_dev *dev, const char c) flush_cache(VIDEO_FB_ADRS, VIDEO_SIZE); } -void video_puts(struct stdio_dev *dev, const char *s) +static void video_puts(struct stdio_dev *dev, const char *s) { int count = strlen(s); |