From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: Re: [PATCH] sysfs: Don't use enums in inline function declaration. Date: Wed, 05 May 2010 15:05:59 -0700 Message-ID: <4BE1EBC7.4040204@oracle.com> References: <20100430163538.7253a9e0.sfr@canb.auug.org.au> <20100430105016.40b51636.randy.dunlap@oracle.com> <20100505091738.7ec27479.randy.dunlap@oracle.com> <20100505162459.GA20296@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from rcsinet10.oracle.com ([148.87.113.121]:38879 "EHLO rcsinet10.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751145Ab0EEWGP (ORCPT ); Wed, 5 May 2010 18:06:15 -0400 In-Reply-To: Sender: linux-next-owner@vger.kernel.org List-ID: To: ebiederm@xmission.com Cc: Greg KH , linux-next@vger.kernel.org, LKML , Stephen Rothwell On 05/05/10 14:54, ebiederm@xmission.com wrote: > > It appears gcc can't cope with using an enum that is only declared in > an inline function declaration, that doesn't even use the variable > that is so declared. > > Avoid the silliness and replace the enum with an int, and make gcc > happy. > > Signed-off-by: Eric W. Biederman Acked-by: Randy Dunlap Thanks, Eric. > --- > include/linux/sysfs.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h > index e58ca1c..17cbeb7 100644 > --- a/include/linux/sysfs.h > +++ b/include/linux/sysfs.h > @@ -318,7 +318,7 @@ static inline void sysfs_put(struct sysfs_dirent *sd) > { > } > > -static inline void sysfs_exit_ns(enum kobj_ns_type type, const void *tag) > +static inline void sysfs_exit_ns(int type, const void *tag) > { > } > -- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code ***