linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ssb: Set linux-wireless as MAINTAINERS list
       [not found]         ` <87y4bn5m4q.fsf@kamboji.qca.qualcomm.com>
@ 2016-01-18 16:53           ` Michael Büsch
  2016-01-18 19:09             ` Rafał Miłecki
  2016-01-19 19:25             ` Kalle Valo
  0 siblings, 2 replies; 7+ messages in thread
From: Michael Büsch @ 2016-01-18 16:53 UTC (permalink / raw)
  To: Kalle Valo
  Cc: Rafał Miłecki, Arnd Bergmann,
	linux-arm-kernel@lists.infradead.org, linux-mips@linux-mips.org,
	Hauke Mehrtens, Linux Kernel Mailing List, Network Development,
	linux-wireless

[-- Attachment #1: Type: text/plain, Size: 613 bytes --]

ssb patches go through the linux-wireless tree.
Set the list to linux-wireless, so linux-wireless patchwork can catch the patches.

Signed-off-by: Michael Buesch <m@bues.ch>

---

Index: linux/MAINTAINERS
===================================================================
--- linux.orig/MAINTAINERS
+++ linux/MAINTAINERS
@@ -10036,7 +10036,7 @@ F:	drivers/net/ethernet/natsemi/sonic.*
 
 SONICS SILICON BACKPLANE DRIVER (SSB)
 M:	Michael Buesch <m@bues.ch>
-L:	netdev@vger.kernel.org
+L:	linux-wireless@vger.kernel.org
 S:	Maintained
 F:	drivers/ssb/
 F:	include/linux/ssb/


-- 
Michael

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: ssb: Set linux-wireless as MAINTAINERS list
  2016-01-18 16:53           ` ssb: Set linux-wireless as MAINTAINERS list Michael Büsch
@ 2016-01-18 19:09             ` Rafał Miłecki
  2016-01-19 13:04               ` Kalle Valo
  2016-01-19 19:25             ` Kalle Valo
  1 sibling, 1 reply; 7+ messages in thread
From: Rafał Miłecki @ 2016-01-18 19:09 UTC (permalink / raw)
  To: Michael Büsch
  Cc: Kalle Valo, Arnd Bergmann, linux-arm-kernel@lists.infradead.org,
	linux-mips@linux-mips.org, Hauke Mehrtens,
	Linux Kernel Mailing List, Network Development,
	linux-wireless@vger.kernel.org

On 18 January 2016 at 17:53, Michael Büsch <m@bues.ch> wrote:
> ssb patches go through the linux-wireless tree.
> Set the list to linux-wireless, so linux-wireless patchwork can catch the patches.

Thanks Michael

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

* [PATCH, RESEND^2] ssb: mark ssb_bus_register as __maybe_unused
       [not found] ` <8760ywd5fe.fsf@kamboji.qca.qualcomm.com>
       [not found]   ` <4037550.DMaVTE01Aq@wuerfel>
@ 2016-01-18 19:39   ` Arnd Bergmann
  2016-01-19 13:03     ` Kalle Valo
  2016-01-19 19:26     ` [RESEND^2] " Kalle Valo
  1 sibling, 2 replies; 7+ messages in thread
From: Arnd Bergmann @ 2016-01-18 19:39 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Kalle Valo, linux-mips, Hauke Mehrtens, Rafał Miłecki,
	linux-kernel, Michael Buesch, netdev, linux-wireless

The SoC variant of the ssb code is now optional like the other
ones, which means we can build the framwork without any
front-end, but that results in a warning:

drivers/ssb/main.c:616:12: warning: 'ssb_bus_register' defined but not used [-Wunused-function]

This annotates the ssb_bus_register function as __maybe_unused to
shut up the warning. A configuration like this will not work on
any hardware of course, but we still want this to silently build
without warnings if the configuration is allowed in the first
place.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 845da6e58e19 ("ssb: add Kconfig entry for compiling SoC related code")
Acked-by: Michael Buesch <m@bues.ch>
---
Resent to linux-wireless as requested

diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c
index cde5ff7529eb..d1a750760cf3 100644
--- a/drivers/ssb/main.c
+++ b/drivers/ssb/main.c
@@ -613,9 +613,10 @@ out:
 	return err;
 }
 
-static int ssb_bus_register(struct ssb_bus *bus,
-			    ssb_invariants_func_t get_invariants,
-			    unsigned long baseaddr)
+static int __maybe_unused
+ssb_bus_register(struct ssb_bus *bus,
+		 ssb_invariants_func_t get_invariants,
+		 unsigned long baseaddr)
 {
 	int err;
 

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

* Re: [PATCH, RESEND^2] ssb: mark ssb_bus_register as __maybe_unused
  2016-01-18 19:39   ` [PATCH, RESEND^2] ssb: mark ssb_bus_register as __maybe_unused Arnd Bergmann
@ 2016-01-19 13:03     ` Kalle Valo
  2016-01-19 19:26     ` [RESEND^2] " Kalle Valo
  1 sibling, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2016-01-19 13:03 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: linux-arm-kernel, linux-mips, Hauke Mehrtens,
	Rafał Miłecki, linux-kernel, Michael Buesch, netdev,
	linux-wireless

Arnd Bergmann <arnd@arndb.de> writes:

> The SoC variant of the ssb code is now optional like the other
> ones, which means we can build the framwork without any
> front-end, but that results in a warning:
>
> drivers/ssb/main.c:616:12: warning: 'ssb_bus_register' defined but not used [-Wunused-function]
>
> This annotates the ssb_bus_register function as __maybe_unused to
> shut up the warning. A configuration like this will not work on
> any hardware of course, but we still want this to silently build
> without warnings if the configuration is allowed in the first
> place.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 845da6e58e19 ("ssb: add Kconfig entry for compiling SoC related code")
> Acked-by: Michael Buesch <m@bues.ch>
> ---
> Resent to linux-wireless as requested

Thanks, and sorry for the hassle. I'm planning to push this to 4.5.

-- 
Kalle Valo

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

* Re: ssb: Set linux-wireless as MAINTAINERS list
  2016-01-18 19:09             ` Rafał Miłecki
@ 2016-01-19 13:04               ` Kalle Valo
  0 siblings, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2016-01-19 13:04 UTC (permalink / raw)
  To: Rafał Miłecki
  Cc: Michael Büsch, Arnd Bergmann,
	linux-arm-kernel@lists.infradead.org, linux-mips@linux-mips.org,
	Hauke Mehrtens, Linux Kernel Mailing List, Network Development,
	linux-wireless@vger.kernel.org

Rafał Miłecki <zajec5@gmail.com> writes:

> On 18 January 2016 at 17:53, Michael Büsch <m@bues.ch> wrote:
>
>> ssb patches go through the linux-wireless tree. Set the list to
>> linux-wireless, so linux-wireless patchwork can catch the patches.
>
> Thanks Michael

Thanks from me also. I'm planning to send this to 4.5.

-- 
Kalle Valo

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

* Re: ssb: Set linux-wireless as MAINTAINERS list
  2016-01-18 16:53           ` ssb: Set linux-wireless as MAINTAINERS list Michael Büsch
  2016-01-18 19:09             ` Rafał Miłecki
@ 2016-01-19 19:25             ` Kalle Valo
  1 sibling, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2016-01-19 19:25 UTC (permalink / raw)
  To: Michael Büsch
  Cc: Rafał Miłecki, Arnd Bergmann,
	linux-arm-kernel@lists.infradead.org, linux-mips@linux-mips.org,
	Hauke Mehrtens, Linux Kernel Mailing List, Network Development,
	linux-wireless


> ssb patches go through the linux-wireless tree.
> Set the list to linux-wireless, so linux-wireless patchwork can catch the patches.
> 
> Signed-off-by: Michael Buesch <m@bues.ch>

Thanks, applied to wireless-drivers.git.

Kalle Valo

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

* Re: [RESEND^2] ssb: mark ssb_bus_register as __maybe_unused
  2016-01-18 19:39   ` [PATCH, RESEND^2] ssb: mark ssb_bus_register as __maybe_unused Arnd Bergmann
  2016-01-19 13:03     ` Kalle Valo
@ 2016-01-19 19:26     ` Kalle Valo
  1 sibling, 0 replies; 7+ messages in thread
From: Kalle Valo @ 2016-01-19 19:26 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: linux-arm-kernel, linux-mips, Hauke Mehrtens,
	Rafał Miłecki, linux-kernel, Michael Buesch, netdev,
	linux-wireless


> The SoC variant of the ssb code is now optional like the other
> ones, which means we can build the framwork without any
> front-end, but that results in a warning:
> 
> drivers/ssb/main.c:616:12: warning: 'ssb_bus_register' defined but not used [-Wunused-function]
> 
> This annotates the ssb_bus_register function as __maybe_unused to
> shut up the warning. A configuration like this will not work on
> any hardware of course, but we still want this to silently build
> without warnings if the configuration is allowed in the first
> place.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Fixes: 845da6e58e19 ("ssb: add Kconfig entry for compiling SoC related code")
> Acked-by: Michael Buesch <m@bues.ch>

Thanks, applied to wireless-drivers.git.

Kalle Valo

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

end of thread, other threads:[~2016-01-19 19:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <8128014.DbbgBtKY3z@wuerfel>
     [not found] ` <8760ywd5fe.fsf@kamboji.qca.qualcomm.com>
     [not found]   ` <4037550.DMaVTE01Aq@wuerfel>
     [not found]     ` <87bn8l7miw.fsf@kamboji.qca.qualcomm.com>
     [not found]       ` <CACna6ryvDFHqwJ3ExURcyFT2ZaT9fS9v36wCnJfze5BLnE88og@mail.gmail.com>
     [not found]         ` <87y4bn5m4q.fsf@kamboji.qca.qualcomm.com>
2016-01-18 16:53           ` ssb: Set linux-wireless as MAINTAINERS list Michael Büsch
2016-01-18 19:09             ` Rafał Miłecki
2016-01-19 13:04               ` Kalle Valo
2016-01-19 19:25             ` Kalle Valo
2016-01-18 19:39   ` [PATCH, RESEND^2] ssb: mark ssb_bus_register as __maybe_unused Arnd Bergmann
2016-01-19 13:03     ` Kalle Valo
2016-01-19 19:26     ` [RESEND^2] " Kalle Valo

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