]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
fbcon: don't inline updatescrollmode
authorMarcin Slusarz <marcin.slusarz@gmail.com>
Wed, 29 Oct 2008 21:01:01 +0000 (14:01 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 30 Oct 2008 18:38:46 +0000 (11:38 -0700)
commitdef1be2d727a1764205479b3e3e3ba16ffbad028
treec7fc1c3d41f6c9997e6ad77ff34dccdf58dc3ac1
parent992b692dcf43612be805465ca4b76f434c715023
fbcon: don't inline updatescrollmode

Updatescrollmode is marked inline, but it's big and is called only from
non-critical codepaths (fbcon_resize, fbcon_switch, fbcon_modechanged).
Dropping it saves almost 800 bytes of text size.

   text    data     bss     dec     hex filename
  23859     287    8448   32594    7f52 drivers/video/console/fbcon.o.before
  23065     287    8448   31800    7c38 drivers/video/console/fbcon.o.after

Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Cc: Antonino Daplas <adaplas@gmail.com>
Cc: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/console/fbcon.c