All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: cpufreq: Remove unused function in cpufreq.c
@ 2014-02-26 15:46 Rashika Kheria
  2014-02-26 16:13 ` Josh Triplett
  2014-02-26 16:42 ` [PATCH v3] drivers: cpufreq: Mark function as static " Rashika Kheria
  0 siblings, 2 replies; 6+ messages in thread
From: Rashika Kheria @ 2014-02-26 15:46 UTC (permalink / raw)
  To: linux-kernel; +Cc: Rafael J. Wysocki, Viresh Kumar, cpufreq, linux-pm, josh

Remove unused function show_boost() in drivers/cpufreq/cpufreq.c.

This eliminates the following warning in drivers/cpufreq/cpufreq.c:
drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
---
 drivers/cpufreq/cpufreq.c |    6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index 08ca8c9..6dce474 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -352,12 +352,6 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
 /*********************************************************************
  *                          SYSFS INTERFACE                          *
  *********************************************************************/
-ssize_t show_boost(struct kobject *kobj,
-				 struct attribute *attr, char *buf)
-{
-	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
-}
-
 static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
 				  const char *buf, size_t count)
 {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] drivers: cpufreq: Remove unused function in cpufreq.c
  2014-02-26 15:46 [PATCH] drivers: cpufreq: Remove unused function in cpufreq.c Rashika Kheria
@ 2014-02-26 16:13 ` Josh Triplett
  2014-02-26 16:42 ` [PATCH v3] drivers: cpufreq: Mark function as static " Rashika Kheria
  1 sibling, 0 replies; 6+ messages in thread
From: Josh Triplett @ 2014-02-26 16:13 UTC (permalink / raw)
  To: Rashika Kheria
  Cc: linux-kernel, Rafael J. Wysocki, Viresh Kumar, cpufreq, linux-pm

On Wed, Feb 26, 2014 at 09:16:25PM +0530, Rashika Kheria wrote:
> Remove unused function show_boost() in drivers/cpufreq/cpufreq.c.
> 
> This eliminates the following warning in drivers/cpufreq/cpufreq.c:
> drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

Reviewed-by: Josh Triplett <josh@joshtriplett.org>

>  drivers/cpufreq/cpufreq.c |    6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index 08ca8c9..6dce474 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -352,12 +352,6 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
>  /*********************************************************************
>   *                          SYSFS INTERFACE                          *
>   *********************************************************************/
> -ssize_t show_boost(struct kobject *kobj,
> -				 struct attribute *attr, char *buf)
> -{
> -	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
> -}
> -
>  static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
>  				  const char *buf, size_t count)
>  {
> -- 
> 1.7.9.5
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v3] drivers: cpufreq: Mark function as static in cpufreq.c
  2014-02-26 15:46 [PATCH] drivers: cpufreq: Remove unused function in cpufreq.c Rashika Kheria
  2014-02-26 16:13 ` Josh Triplett
@ 2014-02-26 16:42 ` Rashika Kheria
  2014-02-26 21:56   ` Rafael J. Wysocki
  1 sibling, 1 reply; 6+ messages in thread
From: Rashika Kheria @ 2014-02-26 16:42 UTC (permalink / raw)
  To: josh, linux-kernel, Rafael J. Wysocki, Viresh Kumar, cpufreq, linux-pm

Mark function as static in cpufreq.c because it is not
used outside this file.

This eliminates the following warning in cpufreq.c:
drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
---
Changes since v1:
Incorrect Fix
Changes since v2:
Show Changelog

 drivers/cpufreq/cpufreq.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index 08ca8c9..54fd670 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -352,7 +352,7 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
 /*********************************************************************
  *                          SYSFS INTERFACE                          *
  *********************************************************************/
-ssize_t show_boost(struct kobject *kobj,
+static ssize_t show_boost(struct kobject *kobj,
 				 struct attribute *attr, char *buf)
 {
 	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v3] drivers: cpufreq: Mark function as static in cpufreq.c
  2014-02-26 16:42 ` [PATCH v3] drivers: cpufreq: Mark function as static " Rashika Kheria
@ 2014-02-26 21:56   ` Rafael J. Wysocki
  2014-02-26 22:16     ` josh
  0 siblings, 1 reply; 6+ messages in thread
From: Rafael J. Wysocki @ 2014-02-26 21:56 UTC (permalink / raw)
  To: Rashika Kheria; +Cc: josh, linux-kernel, Viresh Kumar, cpufreq, linux-pm

On Wednesday, February 26, 2014 10:12:42 PM Rashika Kheria wrote:
> Mark function as static in cpufreq.c because it is not
> used outside this file.
> 
> This eliminates the following warning in cpufreq.c:
> drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]
> 
> Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>

v2 has been Reviewed-by: Josh already, right?

> ---
> Changes since v1:
> Incorrect Fix
> Changes since v2:
> Show Changelog
> 
>  drivers/cpufreq/cpufreq.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index 08ca8c9..54fd670 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -352,7 +352,7 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
>  /*********************************************************************
>   *                          SYSFS INTERFACE                          *
>   *********************************************************************/
> -ssize_t show_boost(struct kobject *kobj,
> +static ssize_t show_boost(struct kobject *kobj,
>  				 struct attribute *attr, char *buf)
>  {
>  	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
> 

-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3] drivers: cpufreq: Mark function as static in cpufreq.c
  2014-02-26 21:56   ` Rafael J. Wysocki
@ 2014-02-26 22:16     ` josh
  2014-02-27  0:07       ` Rafael J. Wysocki
  0 siblings, 1 reply; 6+ messages in thread
From: josh @ 2014-02-26 22:16 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Rashika Kheria, linux-kernel, Viresh Kumar, cpufreq, linux-pm

On Wed, Feb 26, 2014 at 10:56:45PM +0100, Rafael J. Wysocki wrote:
> On Wednesday, February 26, 2014 10:12:42 PM Rashika Kheria wrote:
> > Mark function as static in cpufreq.c because it is not
> > used outside this file.
> > 
> > This eliminates the following warning in cpufreq.c:
> > drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]
> > 
> > Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
> 
> v2 has been Reviewed-by: Josh already, right?

Feel free to forward-propagate to v3 as well, if that helps.

> > ---
> > Changes since v1:
> > Incorrect Fix
> > Changes since v2:
> > Show Changelog
> > 
> >  drivers/cpufreq/cpufreq.c |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> > index 08ca8c9..54fd670 100644
> > --- a/drivers/cpufreq/cpufreq.c
> > +++ b/drivers/cpufreq/cpufreq.c
> > @@ -352,7 +352,7 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
> >  /*********************************************************************
> >   *                          SYSFS INTERFACE                          *
> >   *********************************************************************/
> > -ssize_t show_boost(struct kobject *kobj,
> > +static ssize_t show_boost(struct kobject *kobj,
> >  				 struct attribute *attr, char *buf)
> >  {
> >  	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
> > 
> 
> -- 
> I speak only for myself.
> Rafael J. Wysocki, Intel Open Source Technology Center.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v3] drivers: cpufreq: Mark function as static in cpufreq.c
  2014-02-26 22:16     ` josh
@ 2014-02-27  0:07       ` Rafael J. Wysocki
  0 siblings, 0 replies; 6+ messages in thread
From: Rafael J. Wysocki @ 2014-02-27  0:07 UTC (permalink / raw)
  To: josh; +Cc: Rashika Kheria, linux-kernel, Viresh Kumar, cpufreq, linux-pm

On Wednesday, February 26, 2014 02:16:51 PM josh@joshtriplett.org wrote:
> On Wed, Feb 26, 2014 at 10:56:45PM +0100, Rafael J. Wysocki wrote:
> > On Wednesday, February 26, 2014 10:12:42 PM Rashika Kheria wrote:
> > > Mark function as static in cpufreq.c because it is not
> > > used outside this file.
> > > 
> > > This eliminates the following warning in cpufreq.c:
> > > drivers/cpufreq/cpufreq.c:355:9: warning: no previous prototype for ‘show_boost’ [-Wmissing-prototypes]
> > > 
> > > Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
> > 
> > v2 has been Reviewed-by: Josh already, right?
> 
> Feel free to forward-propagate to v3 as well, if that helps.

OK

Applied, thanks!

> > > ---
> > > Changes since v1:
> > > Incorrect Fix
> > > Changes since v2:
> > > Show Changelog
> > > 
> > >  drivers/cpufreq/cpufreq.c |    2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> > > index 08ca8c9..54fd670 100644
> > > --- a/drivers/cpufreq/cpufreq.c
> > > +++ b/drivers/cpufreq/cpufreq.c
> > > @@ -352,7 +352,7 @@ EXPORT_SYMBOL_GPL(cpufreq_notify_post_transition);
> > >  /*********************************************************************
> > >   *                          SYSFS INTERFACE                          *
> > >   *********************************************************************/
> > > -ssize_t show_boost(struct kobject *kobj,
> > > +static ssize_t show_boost(struct kobject *kobj,
> > >  				 struct attribute *attr, char *buf)
> > >  {
> > >  	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
> > > 
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-26 23:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-26 15:46 [PATCH] drivers: cpufreq: Remove unused function in cpufreq.c Rashika Kheria
2014-02-26 16:13 ` Josh Triplett
2014-02-26 16:42 ` [PATCH v3] drivers: cpufreq: Mark function as static " Rashika Kheria
2014-02-26 21:56   ` Rafael J. Wysocki
2014-02-26 22:16     ` josh
2014-02-27  0:07       ` Rafael J. Wysocki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.