Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1735273 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-09-19 23:40 +0200 |
| Last post | 2017-09-19 23:40 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size Colin King <colin.king@canonical.com> - 2017-09-19 23:40 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-09-19 23:40 +0200 |
| Subject | [PATCH] video: fbdev: radeon: make const array post_divs static, reduces object code size |
| Message-ID | <urypk-2ht-27@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
Don't populate the read-only const array post_divs on the stack,
nstead make it static. Makes the object code smaller by 90 bytes:
Before:
text data bss dec hex filename
40231 8584 896 49711 c22f radeon_base.o
After:
text data bss dec hex filename
39914 8744 960 49618 c1d2 radeon_base.o
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/video/fbdev/aty/radeon_base.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/fbdev/aty/radeon_base.c b/drivers/video/fbdev/aty/radeon_base.c
index 1e2ec360f8c1..8ad1643e7d1c 100644
--- a/drivers/video/fbdev/aty/radeon_base.c
+++ b/drivers/video/fbdev/aty/radeon_base.c
@@ -1534,7 +1534,7 @@ void radeon_write_mode (struct radeonfb_info *rinfo, struct radeon_regs *mode,
static void radeon_calc_pll_regs(struct radeonfb_info *rinfo, struct radeon_regs *regs,
unsigned long freq)
{
- const struct {
+ static const struct {
int divider;
int bitvalue;
} *post_div,
--
2.14.1
Back to top | Article view | linux.kernel
csiph-web