From patchwork Wed May 25 14:19:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Enric Balletbo i Serra X-Patchwork-Id: 97348 X-Patchwork-Delegate: agust@denx.de 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 45BE4B6F94 for ; Thu, 26 May 2011 00:20:26 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 84C8E28107; Wed, 25 May 2011 16:20:14 +0200 (CEST) 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 HqodiDUQikK2; Wed, 25 May 2011 16:20:14 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7056D28118; Wed, 25 May 2011 16:20:01 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 77920280E5 for ; Wed, 25 May 2011 16:19:51 +0200 (CEST) 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 hMhzZE19GHKc for ; Wed, 25 May 2011 16:19:50 +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 mail-ww0-f52.google.com (mail-ww0-f52.google.com [74.125.82.52]) by theia.denx.de (Postfix) with ESMTPS id 0A0E4280E4 for ; Wed, 25 May 2011 16:19:47 +0200 (CEST) Received: by wwb31 with SMTP id 31so10159799wwb.9 for ; Wed, 25 May 2011 07:19:46 -0700 (PDT) Received: by 10.227.11.143 with SMTP id t15mr4726060wbt.56.1306333185854; Wed, 25 May 2011 07:19:45 -0700 (PDT) Received: from localhost.localdomain (249.Red-80-33-164.staticIP.rima-tde.net [80.33.164.249]) by mx.google.com with ESMTPS id 14sm402676wbw.57.2011.05.25.07.19.43 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 25 May 2011 07:19:44 -0700 (PDT) From: Enric Balletbo i Serra To: u-boot@lists.denx.de Date: Wed, 25 May 2011 16:19:19 +0200 Message-Id: <1306333159-27152-3-git-send-email-eballetbo@iseebcn.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1306333159-27152-1-git-send-email-eballetbo@iseebcn.com> References: <1306333159-27152-1-git-send-email-eballetbo@iseebcn.com> Cc: Enric Balletbo i Serra Subject: [U-Boot] [u-boot][PATCH 2/2] igep00x0: change mpurate from 500 to auto 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 This patch changes the default mpurate variable from 500 to auto on all IGEP boards, with this the default rate is autoselected. Signed-off-by: Enric Balletbo i Serra --- include/configs/igep0020.h | 2 +- include/configs/igep0030.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/igep0020.h b/include/configs/igep0020.h index afd9077..5d3060c 100644 --- a/include/configs/igep0020.h +++ b/include/configs/igep0020.h @@ -138,7 +138,7 @@ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ "console=ttyS2,115200n8\0" \ - "mpurate=500\0" \ + "mpurate=auto\0" \ "vram=12M\0" \ "dvimode=1024x768MR-16@60\0" \ "defaultdisplay=dvi\0" \ diff --git a/include/configs/igep0030.h b/include/configs/igep0030.h index cb7194e..85d5d00 100644 --- a/include/configs/igep0030.h +++ b/include/configs/igep0030.h @@ -136,7 +136,7 @@ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ "console=ttyS2,115200n8\0" \ - "mpurate=500\0" \ + "mpurate=auto\0" \ "vram=12M\0" \ "dvimode=1024x768MR-16@60\0" \ "defaultdisplay=dvi\0" \