[PATCH -next 2/2] sysfs: sysfs_update_group stub for CONFIG_SYSFS=n

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Randy Dunlap
Date: Wednesday, April 23, 2008 - 9:56 am

From: Randy Dunlap <randy.dunlap@oracle.com>

scsi_transport_spi uses sysfs_update_group() when CONFIG_SYSFS=n,
so provide a stub for it.

next-20080423/drivers/scsi/scsi_transport_spi.c:1467: error: implicit declaration of function 'sysfs_update_group'
make[3]: *** [drivers/scsi/scsi_transport_spi.o] Error 1

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 include/linux/sysfs.h |    6 ++++++
 1 file changed, 6 insertions(+)

--- next-20080423.orig/include/linux/sysfs.h
+++ next-20080423/include/linux/sysfs.h
@@ -191,6 +191,12 @@ static inline int sysfs_create_group(str
 	return 0;
 }
 
+static inline int sysfs_update_group(struct kobject *kobj,
+				const struct attribute_group *grp)
+{
+	return 0;
+}
+
 static inline void sysfs_remove_group(struct kobject *kobj,
 				      const struct attribute_group *grp)
 {
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH -next 2/2] sysfs: sysfs_update_group stub for CONFI ..., Randy Dunlap, (Wed Apr 23, 9:56 am)