From patchwork Wed Apr 8 00:13:27 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 16976 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n380DkeY018746 for ; Wed, 8 Apr 2009 00:13:46 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760403AbZDHANp (ORCPT ); Tue, 7 Apr 2009 20:13:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760101AbZDHANo (ORCPT ); Tue, 7 Apr 2009 20:13:44 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:56323 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760403AbZDHANn (ORCPT ); Tue, 7 Apr 2009 20:13:43 -0400 Received: from c-67-160-239-110.hsd1.ca.comcast.net ([67.160.239.110] helo=localhost.localdomain) by mho-01-ewr.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1LrLQ8-0006oq-2D; Wed, 08 Apr 2009 00:13:36 +0000 Received: from Mutt by mutt-smtp-wrapper.pl 1.2 (www.zdo.com/articles/mutt-smtp-wrapper.shtml) X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 67.160.239.110 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX18Ip3EH6H308sr2Mlw7uLBG Date: Tue, 7 Apr 2009 17:13:27 -0700 From: Tony Lindgren To: Russell King - ARM Linux Cc: linux-arm-kernel@lists.arm.linux.org.uk, linux-omap@vger.kernel.org, Adrian Hunter , Pierre Ossman Subject: [PATCH] mmc: Fix compile for omap_hsmmc.c (Re: New build error?) Message-ID: <20090408001325.GG23823@atomide.com> References: <20090407195524.GA10619@n2100.arm.linux.org.uk> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20090407195524.GA10619@n2100.arm.linux.org.uk> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org * Russell King - ARM Linux [090407 12:55]: > Caused by: 4a694dc915c9a223044ce21fc0d99e63facd1d64 > > omap_hsmmc: Fix response type for busy after response > > Error: > > drivers/mmc/host/omap_hsmmc.c: In function 'mmc_omap_xfer_done': > drivers/mmc/host/omap_hsmmc.c:301: error: implicit declaration of function 'mmc_omap_fclk_lazy_disable' > > Please submit a fix to Pierre for this, thanks. Thanks for notifying about this. Pierre, here's a fix for this. Tony From 880d2674e036b566f5596bef1b45911508cd37a1 Mon Sep 17 00:00:00 2001 From: Tony Lindgren Date: Tue, 7 Apr 2009 17:04:33 -0700 Subject: [PATCH] mmc: Fix compile for omap_hsmmc.c This fixes the issue noted by Russell King: drivers/mmc/host/omap_hsmmc.c: In function 'mmc_omap_xfer_done': drivers/mmc/host/omap_hsmmc.c:301: error: implicit declaration of function 'mmc_omap_fclk_lazy_disable' This got broken by 4a694dc915c9a223044ce21fc0d99e63facd1d64. Signed-off-by: Tony Lindgren diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index a752788..d765df2 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -298,7 +298,6 @@ mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data) struct mmc_request *mrq = host->mrq; host->mrq = NULL; - mmc_omap_fclk_lazy_disable(host); mmc_request_done(host->mmc, mrq); return; }