From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH] of/device: Move struct of_device define outside of CONFIG_OF_DEVICE test Date: Wed, 09 Jun 2010 22:36:10 -0700 Message-ID: <4C1079CA.1030301@oracle.com> References: <20100610045159.615.89343.stgit@angua> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from rcsinet10.oracle.com ([148.87.113.121]:44760 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751537Ab0FJFgr (ORCPT ); Thu, 10 Jun 2010 01:36:47 -0400 In-Reply-To: <20100610045159.615.89343.stgit@angua> Sender: linux-next-owner@vger.kernel.org List-ID: To: Grant Likely Cc: sfr@canb.auug.org.au, linux-next@vger.kernel.org, linux-kernel@vger.kernel.org On 06/09/10 21:54, Grant Likely wrote: > Some code uses of_device even when CONFIG_OF_DEVICE is not set. This > patch makes of_device valid all the time by moving it outside of the > ifdef CONFIG_OF_DEVICE test. > > Reported-by: Randy Dunlap > Signed-off-by: Grant Likely > --- > > Hi Randy, > > Here's what I applied to my tree to fix the niu driver compile warning. > I've compile tested it on several architectures, and am pushing it out > to my linux-next branch now. Acked-by: Randy Dunlap along with the niu.c patch, of course. > g. > > include/linux/of_device.h | 12 +++++------- > 1 files changed, 5 insertions(+), 7 deletions(-) > > diff --git a/include/linux/of_device.h b/include/linux/of_device.h > index c877d54..8cd1fe7 100644 > --- a/include/linux/of_device.h > +++ b/include/linux/of_device.h > @@ -1,13 +1,6 @@ > #ifndef _LINUX_OF_DEVICE_H > #define _LINUX_OF_DEVICE_H > > -#ifdef CONFIG_OF_DEVICE > -#include > -#include > -#include > -#include > - > - > /* > * The of_device *was* a kind of "base class" that was a superset of > * struct device for use by devices attached to an OF node and probed > @@ -22,7 +15,12 @@ > * from the kernel. > */ > #define of_device platform_device > +#include > > +#ifdef CONFIG_OF_DEVICE > +#include > +#include > +#include > #include > > #define to_of_device(d) container_of(d, struct of_device, dev) > -- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code ***