public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning
@ 2011-08-03  6:48 Axel Lin
  2011-08-03  7:26 ` Guennadi Liakhovetski
  0 siblings, 1 reply; 5+ messages in thread
From: Axel Lin @ 2011-08-03  6:48 UTC (permalink / raw)
  To: linux-kernel; +Cc: Guennadi Liakhovetski, Ian Molton, Chris Ball, linux-mmc

Fix below compile warning:
  CC      drivers/mmc/host/tmio_mmc.o
drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_suspend':
drivers/mmc/host/tmio_mmc.c:30: warning: unused variable 'mmc'
drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_resume':
drivers/mmc/host/tmio_mmc.c:45: warning: unused variable 'mmc'

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/mmc/host/tmio_mmc.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c
index 8d185de..44a9668 100644
--- a/drivers/mmc/host/tmio_mmc.c
+++ b/drivers/mmc/host/tmio_mmc.c
@@ -27,7 +27,6 @@
 static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
 {
 	const struct mfd_cell *cell = mfd_get_cell(dev);
-	struct mmc_host *mmc = platform_get_drvdata(dev);
 	int ret;
 
 	ret = tmio_mmc_host_suspend(&dev->dev);
@@ -42,7 +41,6 @@ static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
 static int tmio_mmc_resume(struct platform_device *dev)
 {
 	const struct mfd_cell *cell = mfd_get_cell(dev);
-	struct mmc_host *mmc = platform_get_drvdata(dev);
 	int ret = 0;
 
 	/* Tell the MFD core we are ready to be enabled */
-- 
1.7.4.1




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

* Re: [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning
  2011-08-03  6:48 [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning Axel Lin
@ 2011-08-03  7:26 ` Guennadi Liakhovetski
  2011-08-03 12:55   ` Chris Ball
  0 siblings, 1 reply; 5+ messages in thread
From: Guennadi Liakhovetski @ 2011-08-03  7:26 UTC (permalink / raw)
  To: Axel Lin; +Cc: linux-kernel, Ian Molton, Chris Ball, linux-mmc

On Wed, 3 Aug 2011, Axel Lin wrote:

> Fix below compile warning:
>   CC      drivers/mmc/host/tmio_mmc.o
> drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_suspend':
> drivers/mmc/host/tmio_mmc.c:30: warning: unused variable 'mmc'
> drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_resume':
> drivers/mmc/host/tmio_mmc.c:45: warning: unused variable 'mmc'
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Good for 3.1, do we also push such "harmless" compiler warning fixes to 
stable?

Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Thanks
Guennadi

> ---
>  drivers/mmc/host/tmio_mmc.c |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c
> index 8d185de..44a9668 100644
> --- a/drivers/mmc/host/tmio_mmc.c
> +++ b/drivers/mmc/host/tmio_mmc.c
> @@ -27,7 +27,6 @@
>  static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
>  {
>  	const struct mfd_cell *cell = mfd_get_cell(dev);
> -	struct mmc_host *mmc = platform_get_drvdata(dev);
>  	int ret;
>  
>  	ret = tmio_mmc_host_suspend(&dev->dev);
> @@ -42,7 +41,6 @@ static int tmio_mmc_suspend(struct platform_device *dev, pm_message_t state)
>  static int tmio_mmc_resume(struct platform_device *dev)
>  {
>  	const struct mfd_cell *cell = mfd_get_cell(dev);
> -	struct mmc_host *mmc = platform_get_drvdata(dev);
>  	int ret = 0;
>  
>  	/* Tell the MFD core we are ready to be enabled */
> -- 
> 1.7.4.1
> 
> 
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

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

* Re: [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning
  2011-08-03  7:26 ` Guennadi Liakhovetski
@ 2011-08-03 12:55   ` Chris Ball
  2011-08-27 19:02     ` Ian Molton
  0 siblings, 1 reply; 5+ messages in thread
From: Chris Ball @ 2011-08-03 12:55 UTC (permalink / raw)
  To: Guennadi Liakhovetski; +Cc: Axel Lin, linux-kernel, Ian Molton, linux-mmc

Hi,

On Wed, Aug 03 2011, Guennadi Liakhovetski wrote:
> On Wed, 3 Aug 2011, Axel Lin wrote:
>
>> Fix below compile warning:
>>   CC      drivers/mmc/host/tmio_mmc.o
>> drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_suspend':
>> drivers/mmc/host/tmio_mmc.c:30: warning: unused variable 'mmc'
>> drivers/mmc/host/tmio_mmc.c: In function 'tmio_mmc_resume':
>> drivers/mmc/host/tmio_mmc.c:45: warning: unused variable 'mmc'
>> 
>> Signed-off-by: Axel Lin <axel.lin@gmail.com>
>
> Good for 3.1, do we also push such "harmless" compiler warning fixes to 
> stable?
>
> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Pushed for 3.1, thanks.  I don't think this is appropriate for stable.

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

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

* Re: [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning
  2011-08-03 12:55   ` Chris Ball
@ 2011-08-27 19:02     ` Ian Molton
  2011-08-28 18:20       ` Chris Ball
  0 siblings, 1 reply; 5+ messages in thread
From: Ian Molton @ 2011-08-27 19:02 UTC (permalink / raw)
  To: Chris Ball; +Cc: Guennadi Liakhovetski, Axel Lin, linux-kernel, linux-mmc

On Wed, 2011-08-03 at 08:55 -0400, Chris Ball wrote:
> > Good for 3.1, do we also push such "harmless" compiler warning fixes
> to 
> > stable?
> >
> > Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> 
> Pushed for 3.1, thanks.  I don't think this is appropriate for stable.

Why on earth not? its obviously correct...


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

* Re: [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning
  2011-08-27 19:02     ` Ian Molton
@ 2011-08-28 18:20       ` Chris Ball
  0 siblings, 0 replies; 5+ messages in thread
From: Chris Ball @ 2011-08-28 18:20 UTC (permalink / raw)
  To: ian; +Cc: Guennadi Liakhovetski, Axel Lin, linux-kernel, linux-mmc

Hi Ian,

On Sat, Aug 27 2011, Ian Molton wrote:
> On Wed, 2011-08-03 at 08:55 -0400, Chris Ball wrote:
>> > Good for 3.1, do we also push such "harmless" compiler warning fixes
>> > to stable?
>> >
>> > Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
>> 
>> Pushed for 3.1, thanks.  I don't think this is appropriate for stable.
>
> Why on earth not? its obviously correct...

Because the rules for stable@ consist of more than the patch being
obviously correct.

You seem to have chosen one stable@ rule that this patch meets, and
ignored the other nine which it mostly does not meet:

Documentation/stable_kernel_rules.txt:
 - It must fix a real bug that bothers people (not a, "This could be a
   problem..." type thing).
 - It must fix a problem that causes a build error (but not for
   things marked CONFIG_BROKEN), an oops, a hang, data corruption,
   a real security issue, or some "oh, that's not good" issue.
   In short, something critical.
 - It cannot contain any "trivial" fixes in it (spelling changes,
   whitespace cleanups, etc).

Thanks,

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>
One Laptop Per Child

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

end of thread, other threads:[~2011-08-28 18:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-03  6:48 [PATCH] mmc: tmio: eliminate unused variable 'mmc' warning Axel Lin
2011-08-03  7:26 ` Guennadi Liakhovetski
2011-08-03 12:55   ` Chris Ball
2011-08-27 19:02     ` Ian Molton
2011-08-28 18:20       ` Chris Ball

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox