diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-10 21:02:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:09 -0400 |
commit | da909ce4c0df482a43e1e8c827a7d2f169973736 (patch) | |
tree | c2715adf1cb2ba1689c5429c41c072af2e6ca8d8 /drivers/video/console | |
parent | ec81c9cc2f58a3a9f9637c390ea83efe9f91abf7 (diff) |
fbcon: uninline large static function get_color()
This function's body is good two screenfuls and it has six callsites. No
apparent reason why it is marked inline.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/console')
-rw-r--r-- | drivers/video/console/fbcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 26bf7cbfecc2..84f842331dfa 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
@@ -287,7 +287,7 @@ static inline int fbcon_is_inactive(struct vc_data *vc, struct fb_info *info) | |||
287 | !vt_force_oops_output(vc); | 287 | !vt_force_oops_output(vc); |
288 | } | 288 | } |
289 | 289 | ||
290 | static inline int get_color(struct vc_data *vc, struct fb_info *info, | 290 | static int get_color(struct vc_data *vc, struct fb_info *info, |
291 | u16 c, int is_fg) | 291 | u16 c, int is_fg) |
292 | { | 292 | { |
293 | int depth = fb_get_color_depth(&info->var, &info->fix); | 293 | int depth = fb_get_color_depth(&info->var, &info->fix); |