From patchwork Mon Jun 6 09:26:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Purna Chandra Mandal X-Patchwork-Id: 630747 X-Patchwork-Delegate: daniel.schwierzeck@googlemail.com 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 3rNTsV5fv6z9t3c for ; Mon, 6 Jun 2016 19:28:46 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5C0A5A7514; Mon, 6 Jun 2016 11:28:45 +0200 (CEST) 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 eX-15trcuZKx; Mon, 6 Jun 2016 11:28:45 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 92B3CA74D2; Mon, 6 Jun 2016 11:28:44 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 77B87A74D2 for ; Mon, 6 Jun 2016 11:28:42 +0200 (CEST) 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 w1UNgHxbeEOL for ; Mon, 6 Jun 2016 11:28:42 +0200 (CEST) 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 email.microchip.com (smtpout.microchip.com [198.175.253.82]) by theia.denx.de (Postfix) with ESMTPS id E256DA74D0 for ; Mon, 6 Jun 2016 11:28:38 +0200 (CEST) Received: from mx.microchip.com (10.10.76.4) by chn-sv-exch04.mchp-main.com (10.10.76.105) with Microsoft SMTP Server id 14.3.181.6; Mon, 6 Jun 2016 02:28:34 -0700 Received: by mx.microchip.com (sSMTP sendmail emulation); Mon, 06 Jun 2016 14:56:39 +0530 From: Purna Chandra Mandal To: Date: Mon, 6 Jun 2016 14:56:37 +0530 Message-ID: <1465205197-30565-1-git-send-email-purna.mandal@microchip.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Cc: Purna Chandra Mandal Subject: [U-Boot] [PATCH] MIPS: Kconfig: use decimal number for all i/d-cache line-size. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Instead of using mix of hex and decimal numbering for i/d-cache size and line-size use unified decimal integer only. Cc: Daniel Schwierzeck Cc: Paul Burton Signed-off-by: Purna Chandra Mandal --- arch/mips/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 5c30ae9..21066f0 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -253,7 +253,7 @@ config SYS_DCACHE_SIZE The total size of the L1 Dcache, if known at compile time. config SYS_DCACHE_LINE_SIZE - hex + int default 0 help The size of L1 Dcache lines, if known at compile time.