From patchwork Thu Oct 1 14:39:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roger Quadros X-Patchwork-Id: 50970 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 n91EdxbX016190 for ; Thu, 1 Oct 2009 14:39:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932605AbZJAOjy (ORCPT ); Thu, 1 Oct 2009 10:39:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932575AbZJAOjy (ORCPT ); Thu, 1 Oct 2009 10:39:54 -0400 Received: from smtp.nokia.com ([192.100.105.134]:64516 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932519AbZJAOjx (ORCPT ); Thu, 1 Oct 2009 10:39:53 -0400 Received: from esebh106.NOE.Nokia.com (esebh106.ntc.nokia.com [172.21.138.213]) by mgw-mx09.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n91Ed1v7030343; Thu, 1 Oct 2009 09:39:03 -0500 Received: from vaebh104.NOE.Nokia.com ([10.160.244.30]) by esebh106.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 1 Oct 2009 17:39:53 +0300 Received: from mgw-sa02.ext.nokia.com ([147.243.1.48]) by vaebh104.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 1 Oct 2009 17:39:51 +0300 Received: from localhost.localdomain (esdhcp03929.research.nokia.com [172.21.39.29]) by mgw-sa02.ext.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n91Edodv016613; Thu, 1 Oct 2009 17:39:50 +0300 From: Roger Quadros To: madhu.cr@ti.com Cc: linux-omap@vger.kernel.org, ext-roger.quadros@nokia.com Subject: [PATCH] omap_hsmmc: Add missing probe handler hook to platform driver data Date: Thu, 1 Oct 2009 17:39:13 +0300 Message-Id: <1254407953-25124-1-git-send-email-ext-roger.quadros@nokia.com> X-Mailer: git-send-email 1.6.0.4 X-OriginalArrivalTime: 01 Oct 2009 14:39:52.0043 (UTC) FILETIME=[08EF7BB0:01CA42A5] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 4487cc0..26abe1e 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -2001,6 +2001,7 @@ clk_en_err: #endif static struct platform_driver omap_hsmmc_driver = { + .probe = omap_hsmmc_probe, .remove = omap_hsmmc_remove, .suspend = omap_hsmmc_suspend, .resume = omap_hsmmc_resume,