Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751477AbdILNMN (ORCPT ); Tue, 12 Sep 2017 09:12:13 -0400 Received: from mail-wr0-f170.google.com ([209.85.128.170]:37828 "EHLO mail-wr0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751422AbdILNMH (ORCPT ); Tue, 12 Sep 2017 09:12:07 -0400 X-Google-Smtp-Source: ADKCNb48VQ3fdnUSF05FaRX9avK/xMkIJLdxriR3nI7aLfHdaCqbXMiCBr+oYTN6/cg5G4cLbaklOg== Subject: Re: [PATCH] backlight: s6e63m0: make const arrays static, reduces object code size To: Colin King , Lee Jones , Jingoo Han , Bartlomiej Zolnierkiewicz , linux-fbdev@vger.kernel.org Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org References: <20170912114545.2131-1-colin.king@canonical.com> From: Daniel Thompson Message-ID: <5f9c04a8-8162-8ddd-caf2-e734a14a2ee3@linaro.org> Date: Tue, 12 Sep 2017 14:12:04 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 In-Reply-To: <20170912114545.2131-1-colin.king@canonical.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1808 Lines: 53 On 12/09/17 12:45, Colin King wrote: > From: Colin Ian King > > Don't populate const arrays on the stack, instead make them > static. Makes the object code smaller by nearly 400 bytes: > > Before: > text data bss dec hex filename > 15164 6336 0 21500 53fc drivers/video/backlight/s6e63m0.o > > After: > text data bss dec hex filename > 14669 6432 0 21101 526d drivers/video/backlight/s6e63m0.o For future records, can you record the compiler version, architecture and optimization level (-O2 or -Os) to the patch header? > Signed-off-by: Colin Ian King > --- > drivers/video/backlight/s6e63m0.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/backlight/s6e63m0.c b/drivers/video/backlight/s6e63m0.c > index 3c4a22a3063a..965c660b2f6b 100644 > --- a/drivers/video/backlight/s6e63m0.c > +++ b/drivers/video/backlight/s6e63m0.c > @@ -446,7 +446,7 @@ static int s6e63m0_gamma_ctl(struct s6e63m0 *lcd, int gamma) > static int s6e63m0_ldi_init(struct s6e63m0 *lcd) > { > int ret, i; > - const unsigned short *init_seq[] = { > + static const unsigned short *init_seq[] = { I'd be inclined to throw in an extra const to help the compile spot any negligent maintenance in the future: static const unsigned short * const init_seq[]; > seq_panel_condition_set, > seq_display_condition_set, > seq_gamma_setting, > @@ -467,7 +467,7 @@ static int s6e63m0_ldi_init(struct s6e63m0 *lcd) > static int s6e63m0_ldi_enable(struct s6e63m0 *lcd) > { > int ret = 0, i; > - const unsigned short *enable_seq[] = { > + static const unsigned short *enable_seq[] = { > seq_stand_by_off, > seq_display_on, > }; >