aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/vt.c
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-01-07 18:09:15 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-08 08:31:15 -0800
commitda2bdf9a6ff40b10d77620d0d76b02a738c103cb (patch)
tree16ca5b7ae8b504fbc2a5e54f934837b5d1172eaa /drivers/char/vt.c
parentgeneric swap(): dcache: use swap() instead of private do_switch() (diff)
downloadlinux-dev-da2bdf9a6ff40b10d77620d0d76b02a738c103cb.tar.xz
linux-dev-da2bdf9a6ff40b10d77620d0d76b02a738c103cb.zip
Make various things static
Building an allnoconfig kernel, sparse asked whether these could be static, so I checked, and they are only used in the file where they are declared. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/vt.c')
-rw-r--r--drivers/char/vt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/char/vt.c b/drivers/char/vt.c
index 80014213fb53..7900bd63b36d 100644
--- a/drivers/char/vt.c
+++ b/drivers/char/vt.c
@@ -969,8 +969,7 @@ int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows)
* Takes the console sem and the called methods then take the tty
* termios_mutex and the tty ctrl_lock in that order.
*/
-
-int vt_resize(struct tty_struct *tty, struct winsize *ws)
+static int vt_resize(struct tty_struct *tty, struct winsize *ws)
{
struct vc_data *vc = tty->driver_data;
int ret;