fbutil: incerease number of characters
authorMinkyu Kang <mk7.kang@samsung.com>
Mon, 22 Nov 2010 07:11:44 +0000 (16:11 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 22 Nov 2010 07:11:44 +0000 (16:11 +0900)
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/video/fbutils.c

index f7c8c76..00d1b84 100644 (file)
@@ -332,8 +332,8 @@ unsigned int get_chars(void)
        int chars;
        int lines;
 
-       chars = panel_info.vl_width / font_vga_8x16.width - 10;
-       lines = panel_info.vl_height  / (font_vga_8x16.height + 2);
+       chars = panel_info.vl_width / font_vga_8x16.width - 3;
+       lines = panel_info.vl_height  / font_vga_8x16.height;
 
        return chars * lines;
 }