From patchwork Mon Jan 10 11:48:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Roese X-Patchwork-Id: 78127 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id BF064B6F2B for ; Mon, 10 Jan 2011 22:48:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D89F7280C5; Mon, 10 Jan 2011 12:48:18 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EzsvbNCwCKmj; Mon, 10 Jan 2011 12:48:18 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 98EF0280C6; Mon, 10 Jan 2011 12:48:16 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 23B13280C6 for ; Mon, 10 Jan 2011 12:48:14 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fWk7MZqmvX1U for ; Mon, 10 Jan 2011 12:48:12 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mo-p05-ob.rzone.de (mo-p05-ob.rzone.de [81.169.146.182]) by theia.denx.de (Postfix) with ESMTPS id 16CA8280C5 for ; Mon, 10 Jan 2011 12:48:10 +0100 (CET) X-RZG-AUTH: :IW0NeWC7b/q2i6W/qstXb1SBUuFnrGohavlCkce+Ub5QXMSOpHp3KRUmnunocA== X-RZG-CLASS-ID: mo05 Received: from quad.fritz.box (p57BD41C8.dip.t-dialin.net [87.189.65.200]) by post.strato.de (fruni mo46) (RZmta 24.9) with ESMTP id D04334n0ABOAve for ; Mon, 10 Jan 2011 12:48:04 +0100 (MET) From: Stefan Roese To: u-boot@lists.denx.de Date: Mon, 10 Jan 2011 12:48:00 +0100 Message-Id: <1294660080-30928-1-git-send-email-sr@denx.de> X-Mailer: git-send-email 1.7.3.5 Subject: [U-Boot] [PATCH] Small coding style fix in lib/asm-offsets.c X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Stefan Roese Acked-by: Michal Simek --- lib/asm-offsets.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c index 6f253a6..c88f5d4 100644 --- a/lib/asm-offsets.c +++ b/lib/asm-offsets.c @@ -23,10 +23,10 @@ int main(void) { /* Round up to make sure size gives nice stack alignment */ DEFINE(GENERATED_GBL_DATA_SIZE, - (sizeof(struct global_data)+15) & ~15); + (sizeof(struct global_data) + 15) & ~15); DEFINE(GENERATED_BD_INFO_SIZE, - (sizeof(struct bd_info)+15) & ~15); + (sizeof(struct bd_info) + 15) & ~15); return 0; }