diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-03-27 01:17:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 08:44:57 -0800 |
commit | ac3f9087d337a6ffa1a5fbdf2c923eb0aad1aef6 (patch) | |
tree | a01c80fcddb96da7f0f98ce0192ff9e350a6bcd0 /drivers/video/console | |
parent | ed49843b897da9969e349c279ffc832efcb93213 (diff) | |
download | blackbird-obmc-linux-ac3f9087d337a6ffa1a5fbdf2c923eb0aad1aef6.tar.gz blackbird-obmc-linux-ac3f9087d337a6ffa1a5fbdf2c923eb0aad1aef6.zip |
[PATCH] sparse: Fix warnings in newport driver about non-static functions
There are more sparse warnings but fixing those will require some more work
than I want to do without hardware for testing at hand.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console')
-rw-r--r-- | drivers/video/console/newport_con.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/console/newport_con.c b/drivers/video/console/newport_con.c index 762c7a593141..e99fe30e568c 100644 --- a/drivers/video/console/newport_con.c +++ b/drivers/video/console/newport_con.c @@ -149,7 +149,7 @@ static inline void newport_clear_lines(int ystart, int yend, int ci) newport_clear_screen(0, ystart, 1280 + 63, yend, ci); } -void newport_reset(void) +static void newport_reset(void) { unsigned short treg; int i; @@ -193,7 +193,7 @@ void newport_reset(void) * calculate the actual screen size by reading * the video timing out of the VC2 */ -void newport_get_screensize(void) +static void newport_get_screensize(void) { int i, cols; unsigned short ventry, treg; |