linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c
@ 2011-02-06 21:52 Jesper Juhl
  2011-02-09 19:45 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Jesper Juhl @ 2011-02-06 21:52 UTC (permalink / raw)
  To: devel
  Cc: linux-kernel, linux-wireless, Jason Cooper, Greg Kroah-Hartman,
	Arend van Spriel, Roland Vossen, Dowan Kim, Henry Ptasinski,
	Brett Rudley, trivial

We include wlc_event.h twice in 
drivers/staging/brcm80211/sys/wlc_mac80211.c
Once is enough.

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
---
 wlc_mac80211.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/staging/brcm80211/sys/wlc_mac80211.c b/drivers/staging/brcm80211/sys/wlc_mac80211.c
index a130386..0a46d44 100644
--- a/drivers/staging/brcm80211/sys/wlc_mac80211.c
+++ b/drivers/staging/brcm80211/sys/wlc_mac80211.c
@@ -47,7 +47,6 @@
 #include <wlc_antsel.h>
 #include <wlc_stf.h>
 #include <wlc_ampdu.h>
-#include <wlc_event.h>
 #include <wl_export.h>
 #include "d11ucode_ext.h"
 #include <wlc_alloc.h>


-- 
Jesper Juhl <jj@chaosbits.net>            http://www.chaosbits.net/
Plain text mails only, please.
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html


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

* Re: [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c
  2011-02-06 21:52 [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c Jesper Juhl
@ 2011-02-09 19:45 ` Greg KH
  2011-02-09 21:18   ` Jesper Juhl
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2011-02-09 19:45 UTC (permalink / raw)
  To: Jesper Juhl
  Cc: devel, linux-kernel, linux-wireless, Jason Cooper,
	Greg Kroah-Hartman, Arend van Spriel, Roland Vossen, Dowan Kim,
	Henry Ptasinski, Brett Rudley, trivial

On Sun, Feb 06, 2011 at 10:52:17PM +0100, Jesper Juhl wrote:
> We include wlc_event.h twice in 
> drivers/staging/brcm80211/sys/wlc_mac80211.c
> Once is enough.

Odd, this file isn't even in the linux-next tree anymore, what tree did
you make this against?

thanks,

greg k-h

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

* Re: [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c
  2011-02-09 19:45 ` Greg KH
@ 2011-02-09 21:18   ` Jesper Juhl
  2011-02-09 21:27     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Jesper Juhl @ 2011-02-09 21:18 UTC (permalink / raw)
  To: Greg KH
  Cc: devel, linux-kernel, linux-wireless, Jason Cooper,
	Greg Kroah-Hartman, Arend van Spriel, Roland Vossen, Dowan Kim,
	Henry Ptasinski, Brett Rudley, trivial

On Wed, 9 Feb 2011, Greg KH wrote:

> On Sun, Feb 06, 2011 at 10:52:17PM +0100, Jesper Juhl wrote:
> > We include wlc_event.h twice in 
> > drivers/staging/brcm80211/sys/wlc_mac80211.c
> > Once is enough.
> 
> Odd, this file isn't even in the linux-next tree anymore, what tree did
> you make this against?
> 
Linus' tree - can't remember what HEAD was at when I made that patch, but 
I probably pulled it the same day I sent the mail.

-- 
Jesper Juhl <jj@chaosbits.net>            http://www.chaosbits.net/
Plain text mails only, please.
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html


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

* Re: [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c
  2011-02-09 21:18   ` Jesper Juhl
@ 2011-02-09 21:27     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2011-02-09 21:27 UTC (permalink / raw)
  To: Jesper Juhl
  Cc: Greg KH, devel, linux-kernel, linux-wireless, Jason Cooper,
	Arend van Spriel, Roland Vossen, Dowan Kim, Henry Ptasinski,
	Brett Rudley, trivial

On Wed, Feb 09, 2011 at 10:18:59PM +0100, Jesper Juhl wrote:
> On Wed, 9 Feb 2011, Greg KH wrote:
> 
> > On Sun, Feb 06, 2011 at 10:52:17PM +0100, Jesper Juhl wrote:
> > > We include wlc_event.h twice in 
> > > drivers/staging/brcm80211/sys/wlc_mac80211.c
> > > Once is enough.
> > 
> > Odd, this file isn't even in the linux-next tree anymore, what tree did
> > you make this against?
> > 
> Linus' tree - can't remember what HEAD was at when I made that patch, but 
> I probably pulled it the same day I sent the mail.

Please always send trivial stuff like this against linux-next, otherwise
it often times isn't relevant at all anymore.

thanks,

greg k-h

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

end of thread, other threads:[~2011-02-09 21:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-06 21:52 [PATCH][trivial] Remove duplicate inclusion of wlc_event.h in drivers/staging/brcm80211/sys/wlc_mac80211.c Jesper Juhl
2011-02-09 19:45 ` Greg KH
2011-02-09 21:18   ` Jesper Juhl
2011-02-09 21:27     ` Greg KH

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).