From patchwork Sun May 15 15:39:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Behme X-Patchwork-Id: 95651 X-Patchwork-Delegate: promsoft@gmail.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 70DD2B6F05 for ; Mon, 16 May 2011 01:39:52 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BDC5B2816E; Sun, 15 May 2011 17:39:50 +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 wsgOUqn6HV8w; Sun, 15 May 2011 17:39:50 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9478D28165; Sun, 15 May 2011 17:39:48 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D3E7928165 for ; Sun, 15 May 2011 17:39:45 +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 Gd7EKfMwi1zV for ; Sun, 15 May 2011 17:39:45 +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-fx0-f44.google.com (mail-fx0-f44.google.com [209.85.161.44]) by theia.denx.de (Postfix) with ESMTPS id 070DB28162 for ; Sun, 15 May 2011 17:39:43 +0200 (CEST) Received: by fxm15 with SMTP id 15so2601058fxm.3 for ; Sun, 15 May 2011 08:39:42 -0700 (PDT) Received: by 10.223.117.134 with SMTP id r6mr2334993faq.147.1305473982546; Sun, 15 May 2011 08:39:42 -0700 (PDT) Received: from asterix.localdomain (p5B044E20.dip.t-dialin.net [91.4.78.32]) by mx.google.com with ESMTPS id f14sm1500124fai.41.2011.05.15.08.39.40 (version=SSLv3 cipher=OTHER); Sun, 15 May 2011 08:39:41 -0700 (PDT) From: Dirk Behme To: u-boot@lists.denx.de Date: Sun, 15 May 2011 17:39:28 +0200 Message-Id: <1305473968-1444-1-git-send-email-dirk.behme@gmail.com> X-Mailer: git-send-email 1.7.3.2 Cc: Andy Fleming Subject: [U-Boot] [PATCH] MMC S5P: Fix typo 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 From: Dirk Behme Fix typo resulting in the compilation error s5p_mmc.c: In function 's5p_mmc_initialize': s5p_mmc.c:469: error: 'struct mmc' has no member named 'm_bmax' introduced by commit "MMC: make b_max unconditional" (8feafcc49c0b7a9c541904f95a43dbef2fecc38b) Signed-off-by: Dirk Behme CC: John Rigby CC: Andy Fleming --- Found while building 's5p_goni' drivers/mmc/s5p_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: u-boot.git/drivers/mmc/s5p_mmc.c =================================================================== --- u-boot.git.orig/drivers/mmc/s5p_mmc.c +++ u-boot.git/drivers/mmc/s5p_mmc.c @@ -466,7 +466,7 @@ static int s5p_mmc_initialize(int dev_in mmc_host[dev_index].clock = 0; mmc_host[dev_index].reg = s5p_get_base_mmc(dev_index); - mmc->m_bmax = 0; + mmc->b_max = 0; mmc_register(mmc); return 0;