From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752352AbdK2ITl (ORCPT ); Wed, 29 Nov 2017 03:19:41 -0500 Received: from mx02-sz.bfs.de ([194.94.69.103]:29257 "EHLO mx02-sz.bfs.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751537AbdK2ITj (ORCPT ); Wed, 29 Nov 2017 03:19:39 -0500 Message-ID: <5A1E6D97.1050109@bfs.de> Date: Wed, 29 Nov 2017 09:19:35 +0100 From: walter harms Reply-To: wharms@bfs.de User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.1.16) Gecko/20101125 SUSE/3.0.11 Thunderbird/3.0.11 MIME-Version: 1.0 To: Colin King CC: Linus Walleij , linux-gpio@vger.kernel.org, kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] gpio: gpio-stmpe: make various char arrays static const, shrinks object size References: <20171128182339.24579-1-colin.king@canonical.com> In-Reply-To: <20171128182339.24579-1-colin.king@canonical.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am 28.11.2017 19:23, schrieb Colin King: > From: Colin Ian King > > Don't populate the read-only arrays edge_det_values, rise_values and > fall_values on the stack but instead make them static and constify them. > Makes the object code smaller by over 240 bytes: > > Before: > text data bss dec hex filename > 9525 2520 192 12237 2fcd drivers/gpio/gpio-stmpe.o > > After: > text data bss dec hex filename > 9025 2776 192 11993 2ed9 drivers/gpio/gpio-stmpe.o > > (gcc version 7.2.0 x86_64) > > Signed-off-by: Colin Ian King > --- > drivers/gpio/gpio-stmpe.c | 24 +++++++++++++++--------- > 1 file changed, 15 insertions(+), 9 deletions(-) > > diff --git a/drivers/gpio/gpio-stmpe.c b/drivers/gpio/gpio-stmpe.c > index e6e5cca624a7..e3d048e65339 100644 > --- a/drivers/gpio/gpio-stmpe.c > +++ b/drivers/gpio/gpio-stmpe.c > @@ -273,15 +273,21 @@ static void stmpe_dbg_show_one(struct seq_file *s, > u8 fall_reg; > u8 irqen_reg; > > - char *edge_det_values[] = {"edge-inactive", > - "edge-asserted", > - "not-supported"}; > - char *rise_values[] = {"no-rising-edge-detection", > - "rising-edge-detection", > - "not-supported"}; > - char *fall_values[] = {"no-falling-edge-detection", > - "falling-edge-detection", > - "not-supported"}; > + static const char * const edge_det_values[] = { > + "edge-inactive", > + "edge-asserted", > + "not-supported" > + }; > + static const char * const rise_values[] = { > + "no-rising-edge-detection", > + "rising-edge-detection", > + "not-supported" > + }; > + static const char * const fall_values[] = { > + "no-falling-edge-detection", > + "falling-edge-detection", > + "not-supported" > + }; > #define NOT_SUPPORTED_IDX 2 @maintainer: the define here is hard to find, perhaps i should be move to a place where i can be found more easily. Like the beginning of line. re, wh > u8 edge_det = NOT_SUPPORTED_IDX; > u8 rise = NOT_SUPPORTED_IDX;