Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756663Ab0KUCus (ORCPT ); Sat, 20 Nov 2010 21:50:48 -0500 Received: from mail.perches.com ([173.55.12.10]:1672 "EHLO mail.perches.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756504Ab0KUCkF (ORCPT ); Sat, 20 Nov 2010 21:40:05 -0500 From: Joe Perches To: Samuel Ortiz Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 25/62] irda: Use static const Date: Sat, 20 Nov 2010 18:38:26 -0800 Message-Id: <5f4ab3811a7f1d2f9b59fa1426c67a5ee9e31f72.1290305776.git.joe@perches.com> X-Mailer: git-send-email 1.7.3.2.245.g03276.dirty In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1263 Lines: 36 Using static const generally increases object text and decreases data size. It also generally decreases overall object size. text data bss dec hex filename 16352 216 4424 20992 5200 drivers/net/irda/donauboe.o.old 16352 216 4424 20992 5200 drivers/net/irda/donauboe.o.new Signed-off-by: Joe Perches --- drivers/net/irda/donauboe.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/irda/donauboe.c b/drivers/net/irda/donauboe.c index b626ccc..f81d944 100644 --- a/drivers/net/irda/donauboe.c +++ b/drivers/net/irda/donauboe.c @@ -818,9 +818,9 @@ toshoboe_probe (struct toshoboe_cb *self) { int i, j, n; #ifdef USE_MIR - int bauds[] = { 9600, 115200, 4000000, 1152000 }; + static const int bauds[] = { 9600, 115200, 4000000, 1152000 }; #else - int bauds[] = { 9600, 115200, 4000000 }; + static const int bauds[] = { 9600, 115200, 4000000 }; #endif unsigned long flags; -- 1.7.3.2.245.g03276.dirty -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/