Prev: [PATCH 19/25] serial: timbuart: make sure last byte is sent when port is closed
Next: [PATCH 18/38] sysfs: Basic support for multiple super blocks
From: Greg Kroah-Hartman on 21 May 2010 13:00 From: Eric W. Biederman <ebiederm(a)xmission.com> 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 <ebiederm(a)aristanetworks.com> Acked-by: Randy Dunlap <randy.dunlap(a)oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- 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 47f1c95..6903e92 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h @@ -328,7 +328,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) { } -- 1.7.0.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |