From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by ozlabs.org (Postfix) with ESMTP id 428851007E1 for ; Thu, 22 Jul 2010 10:18:00 +1000 (EST) Date: Wed, 21 Jul 2010 17:07:37 -0700 From: Greg KH To: Grant Likely Subject: Re: [PATCH 1/5] drivercore/of: Add OF style matching to platform bus Message-ID: <20100722000737.GA14249@suse.de> References: <20100721232817.7782.23410.stgit@angua> <20100721233954.7782.81154.stgit@angua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20100721233954.7782.81154.stgit@angua> Cc: Stephen Rothwell , Michal Simek , microblaze-uclinux@itee.uq.edu.au, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org, sparclinux@vger.kernel.org, David Miller List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, Jul 21, 2010 at 05:39:54PM -0600, Grant Likely wrote: > As part of the merge between platform bus and of_platform bus, add the > ability to do of-style matching to the platform bus. > > Signed-off-by: Grant Likely > CC: Greg Kroah-Hartman > CC: Michal Simek > CC: Grant Likely > CC: Benjamin Herrenschmidt > CC: Stephen Rothwell > CC: linux-kernel@vger.kernel.org > CC: microblaze-uclinux@itee.uq.edu.au > CC: linuxppc-dev@ozlabs.org > CC: devicetree-discuss@lists.ozlabs.org > --- > drivers/base/platform.c | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/drivers/base/platform.c b/drivers/base/platform.c > index 4d99c8b..6a9b3dd 100644 > --- a/drivers/base/platform.c > +++ b/drivers/base/platform.c > @@ -12,6 +12,7 @@ > > #include > #include > +#include > #include > #include > #include > @@ -673,6 +674,10 @@ static int platform_match(struct device *dev, struct device_driver *drv) > struct platform_device *pdev = to_platform_device(dev); > struct platform_driver *pdrv = to_platform_driver(drv); > > + /* Attempt an OF style match first */ > + if (of_driver_match_device(dev, drv)) > + return 1; > + > /* match against the id table first */ I think you need to also change this comment, you can't have two "firsts" :) If you do that, feel free to add an: Acked-by: Greg Kroah-Hartman to the patch. thanks, greg k-h