Commit da12f2a1 authored by Anton Blanchard's avatar Anton Blanchard Committed by Linus Torvalds

[PATCH] ppc64: suppress 'store_purr' unused warning

Some new sysfs macros declare a store_purr() function that never gets used,
which makes a compiler warning happen.  Suppress the warning with the used
attribute.
Signed-off-by: default avatarDave Hansen <haveblue@us.ibm.com>
Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8c767e10
...@@ -208,8 +208,8 @@ static ssize_t show_##NAME(struct sys_device *dev, char *buf) \ ...@@ -208,8 +208,8 @@ static ssize_t show_##NAME(struct sys_device *dev, char *buf) \
unsigned long val = run_on_cpu(cpu->sysdev.id, read_##NAME, 0); \ unsigned long val = run_on_cpu(cpu->sysdev.id, read_##NAME, 0); \
return sprintf(buf, "%lx\n", val); \ return sprintf(buf, "%lx\n", val); \
} \ } \
static ssize_t store_##NAME(struct sys_device *dev, const char *buf, \ static ssize_t __attribute_used__ \
size_t count) \ store_##NAME(struct sys_device *dev, const char *buf, size_t count) \
{ \ { \
struct cpu *cpu = container_of(dev, struct cpu, sysdev); \ struct cpu *cpu = container_of(dev, struct cpu, sysdev); \
unsigned long val; \ unsigned long val; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment