diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:54:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-08 14:54:18 +0200 |
commit | ef5bc2c39c8b2dfda3915345f7abb17e1927684d (patch) | |
tree | c40c72e4d61cb07f2e3bb4380d840c4cedb8bec6 /util-linux/fbset.c | |
parent | adf922ec2800d53f5eedd469cf99c55946caeb43 (diff) | |
download | busybox-ef5bc2c39c8b2dfda3915345f7abb17e1927684d.tar.gz |
*: three more NOINLINEs
function old new delta
lzo_decompress - 525 +525
lzo_compress - 470 +470
showmode - 330 +330
fbset_main 1698 1273 -425
do_lzo_compress 799 323 -476
do_lzo_decompress 1167 526 -641
------------------------------------------------------------------------------
(add/remove: 3/0 grow/shrink: 0/3 up/down: 1325/-1542) Total: -217 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/fbset.c')
-rw-r--r-- | util-linux/fbset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index 358d0a8fc..6e497c6ea 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c @@ -269,7 +269,7 @@ static void setfbmode(struct fb_var_screeninfo *base, base->bits_per_pixel = set->bits_per_pixel; } -static void showmode(struct fb_var_screeninfo *v) +static NOINLINE void showmode(struct fb_var_screeninfo *v) { double drate = 0, hrate = 0, vrate = 0; |