diff options
author | Olof Johansson <olof@lixom.net> | 2007-09-04 22:43:17 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-09-13 11:33:22 -0400 |
commit | 6bcc4c01755fd2066bc374193cf3b0849cbabe47 (patch) | |
tree | 10f4c66617abec353dec304fdcd3436a533fc6a3 /arch/powerpc/kernel/sysfs.c | |
parent | a416561bf790d55db68b2980c2a6951981018041 (diff) |
[POWERPC] Remove warning in arch/powerpc/kernel/sysfs.c
Fixes:
arch/powerpc/kernel/sysfs.c: In function 'cpu_add_sysdev_attr_group':
arch/powerpc/kernel/sysfs.c:388: warning: ignoring return value of
'sysfs_create_group', declared with attribute warn_unused_result
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/sysfs.c')
-rw-r--r-- | arch/powerpc/kernel/sysfs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/sysfs.c b/arch/powerpc/kernel/sysfs.c index d7835ba9fb8c..25d9a96484dd 100644 --- a/arch/powerpc/kernel/sysfs.c +++ b/arch/powerpc/kernel/sysfs.c | |||
@@ -440,12 +440,14 @@ int cpu_add_sysdev_attr_group(struct attribute_group *attrs) | |||
440 | { | 440 | { |
441 | int cpu; | 441 | int cpu; |
442 | struct sys_device *sysdev; | 442 | struct sys_device *sysdev; |
443 | int ret; | ||
443 | 444 | ||
444 | mutex_lock(&cpu_mutex); | 445 | mutex_lock(&cpu_mutex); |
445 | 446 | ||
446 | for_each_possible_cpu(cpu) { | 447 | for_each_possible_cpu(cpu) { |
447 | sysdev = get_cpu_sysdev(cpu); | 448 | sysdev = get_cpu_sysdev(cpu); |
448 | sysfs_create_group(&sysdev->kobj, attrs); | 449 | ret = sysfs_create_group(&sysdev->kobj, attrs); |
450 | WARN_ON(ret != 0); | ||
449 | } | 451 | } |
450 | 452 | ||
451 | mutex_unlock(&cpu_mutex); | 453 | mutex_unlock(&cpu_mutex); |