* [PATCH linux-next] Changed arguments to show & store methods for struct sysdev_attribute in kernel/sched.c
@ 2008-07-11 11:22 vibi sreenivasan
0 siblings, 0 replies; only message in thread
From: vibi sreenivasan @ 2008-07-11 11:22 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: H. Peter Anvin, linux-next, Ingo Molnar, Thomas Gleixner
Hello,
From: Vibi sreenivasan <vibi_sreenivasan@cms.com>
FIXES THIS :
CC kernel/sched.o
kernel/sched.c:7743: warning: initialization from incompatible pointer
type
kernel/sched.c:7743: warning: initialization from incompatible pointer
type
caused by mismatch of function prototype of show & store method in
struct sysdev_attribute
Signed-off-by: Vibi sreenivasan <vibi_sreenivasan@cms.com>
diff --git a/kernel/sched.c b/kernel/sched.c
index 96cee36..8e83460 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -7731,12 +7731,13 @@ static ssize_t sched_power_savings_store(const
char *buf, size_t count, int smt)
}
#ifdef CONFIG_SCHED_MC
-static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char
*page)
+static ssize_t sched_mc_power_savings_show(struct sys_device *dev,
+ struct sysdev_attribute *attribute, char *page)
{
return sprintf(page, "%u\n", sched_mc_power_savings);
}
static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
- const char *buf, size_t count)
+ struct sysdev_attribute *attribute,const char *buf, size_t count)
{
return sched_power_savings_store(buf, count, 0);
}
@@ -7745,12 +7746,13 @@ static SYSDEV_ATTR(sched_mc_power_savings, 0644,
sched_mc_power_savings_show,
#endif
#ifdef CONFIG_SCHED_SMT
-static ssize_t sched_smt_power_savings_show(struct sys_device *dev,
char *page)
+static ssize_t sched_smt_power_savings_show(struct sys_device *dev,
+ struct sysdev_attribute *attribute, char *page)
{
return sprintf(page, "%u\n", sched_smt_power_savings);
}
static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
- const char *buf, size_t count)
+ struct sysdev_attribute *attribute, const char *buf, size_t count)
{
return sched_power_savings_store(buf, count, 1);
}
Thanks & Regards
vibi sreenivasan
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-11 11:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-11 11:22 [PATCH linux-next] Changed arguments to show & store methods for struct sysdev_attribute in kernel/sched.c vibi sreenivasan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).