public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sdhci-tegra: fix linux/module.h included twice
@ 2012-02-15 17:54 Danny Kukawka
  2012-02-15 18:38 ` Olof Johansson
  2012-02-15 19:10 ` Paul Gortmaker
  0 siblings, 2 replies; 4+ messages in thread
From: Danny Kukawka @ 2012-02-15 17:54 UTC (permalink / raw)
  To: Chris Ball
  Cc: Danny Kukawka, Olof Johansson, Stephen Warren, Paul Gortmaker,
	Russell King, linux-mmc, linux-kernel

Remove double include of linux/module.h.

Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
---
 drivers/mmc/host/sdhci-tegra.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c
index 78a36eb..cb34856 100644
--- a/drivers/mmc/host/sdhci-tegra.c
+++ b/drivers/mmc/host/sdhci-tegra.c
@@ -23,7 +23,6 @@
 #include <linux/gpio.h>
 #include <linux/mmc/card.h>
 #include <linux/mmc/host.h>
-#include <linux/module.h>
 
 #include <asm/gpio.h>
 
-- 
1.7.8.3


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

* Re: [PATCH] sdhci-tegra: fix linux/module.h included twice
  2012-02-15 17:54 [PATCH] sdhci-tegra: fix linux/module.h included twice Danny Kukawka
@ 2012-02-15 18:38 ` Olof Johansson
  2012-02-15 19:10 ` Paul Gortmaker
  1 sibling, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2012-02-15 18:38 UTC (permalink / raw)
  To: Danny Kukawka
  Cc: Chris Ball, Danny Kukawka, Stephen Warren, Paul Gortmaker,
	Russell King, linux-mmc, linux-kernel

On Wed, Feb 15, 2012 at 9:54 AM, Danny Kukawka <danny.kukawka@bisect.de> wrote:
> Remove double include of linux/module.h.
>
> Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>

Obviously correct, not that Chris needs it but anyway:

Acked-by: Olof Johansson <olof@lixom.net>


-Olof

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

* Re: [PATCH] sdhci-tegra: fix linux/module.h included twice
  2012-02-15 17:54 [PATCH] sdhci-tegra: fix linux/module.h included twice Danny Kukawka
  2012-02-15 18:38 ` Olof Johansson
@ 2012-02-15 19:10 ` Paul Gortmaker
  2012-02-15 20:45   ` Danny Kukawka
  1 sibling, 1 reply; 4+ messages in thread
From: Paul Gortmaker @ 2012-02-15 19:10 UTC (permalink / raw)
  To: Danny Kukawka
  Cc: Chris Ball, Danny Kukawka, Olof Johansson, Stephen Warren,
	Russell King, linux-mmc, linux-kernel

On 12-02-15 12:54 PM, Danny Kukawka wrote:
> Remove double include of linux/module.h.
> 
> Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>

Hi Danny,

We've already got these covered all in one go.

https://lkml.org/lkml/2012/2/4/134

Thanks,
Paul.

---

> ---
>  drivers/mmc/host/sdhci-tegra.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c
> index 78a36eb..cb34856 100644
> --- a/drivers/mmc/host/sdhci-tegra.c
> +++ b/drivers/mmc/host/sdhci-tegra.c
> @@ -23,7 +23,6 @@
>  #include <linux/gpio.h>
>  #include <linux/mmc/card.h>
>  #include <linux/mmc/host.h>
> -#include <linux/module.h>
>  
>  #include <asm/gpio.h>
>  

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

* Re: [PATCH] sdhci-tegra: fix linux/module.h included twice
  2012-02-15 19:10 ` Paul Gortmaker
@ 2012-02-15 20:45   ` Danny Kukawka
  0 siblings, 0 replies; 4+ messages in thread
From: Danny Kukawka @ 2012-02-15 20:45 UTC (permalink / raw)
  To: Paul Gortmaker
  Cc: Chris Ball, Olof Johansson, Stephen Warren, Russell King,
	linux-mmc, linux-kernel

On Mittwoch, 15. Februar 2012, Paul Gortmaker wrote:
> On 12-02-15 12:54 PM, Danny Kukawka wrote:
> > Remove double include of linux/module.h.
> >
> > Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de>
>
> Hi Danny,
>
> We've already got these covered all in one go.
>
> https://lkml.org/lkml/2012/2/4/134

Okay, I checked mainline and linux-next and did a fast search over the Subject 
on the ML and couldn't find these fixes. 

Where they already applied to a tree?

Then you may want to ignore these of my mails:
- [PATCH] sdhci-tegra: fix linux/module.h included twice
- [PATCH] dwc3: linux/module.h included twice
  -> https://lkml.org/lkml/2012/2/15/309
- [PATCH] drivers/dma: linux/module.h included twice
  -> https://lkml.org/lkml/2012/2/15/351
- [PATCH] adp1653: included linux/module.h twice
  -> https://lkml.org/lkml/2012/2/15/352
- [PATCH] Staging: sm7xx/smtcfb.c included linux/module.h twice
  -> https://lkml.org/lkml/2012/2/15/355

Danny

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

end of thread, other threads:[~2012-02-15 20:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-15 17:54 [PATCH] sdhci-tegra: fix linux/module.h included twice Danny Kukawka
2012-02-15 18:38 ` Olof Johansson
2012-02-15 19:10 ` Paul Gortmaker
2012-02-15 20:45   ` Danny Kukawka

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