linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC] Make BCMA a menuconfig to ease disabling it all
       [not found] <CAEwRq=oz=8T489QZtjcHB03rv_mFY6WAyOUkgMTOrsJuDEPPdw@mail.gmail.com>
@ 2017-04-17 10:07 ` Vincent Legoll
  2017-04-17 10:07   ` [PATCH] " Vincent Legoll
  2017-04-17 10:11   ` [PATCH RFC] Make " Vincent Legoll
  0 siblings, 2 replies; 5+ messages in thread
From: Vincent Legoll @ 2017-04-17 10:07 UTC (permalink / raw)
  To: linux-kernel, zajec5, linux-wireless


Hello,

this is more what I wanted to achieve, an easily disableable BCMA menuconfig.

This is working as intended on x86_64 defconfig, whereas it is harder to disable
for ARCH=arm because of "select"s. But that's less of an issue, as those arch's
defconfigs may very well want the feature enbled, and that would make sense.

Any input appreciated.

Thanks

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

* [PATCH] Make BCMA a menuconfig to ease disabling it all
  2017-04-17 10:07 ` [PATCH RFC] Make BCMA a menuconfig to ease disabling it all Vincent Legoll
@ 2017-04-17 10:07   ` Vincent Legoll
  2017-05-19  6:08     ` Kalle Valo
  2017-08-08 11:45     ` bcma: make " Kalle Valo
  2017-04-17 10:11   ` [PATCH RFC] Make " Vincent Legoll
  1 sibling, 2 replies; 5+ messages in thread
From: Vincent Legoll @ 2017-04-17 10:07 UTC (permalink / raw)
  To: linux-kernel, zajec5, linux-wireless; +Cc: Vincent Legoll

No need to get into the submenu to disable all BCMA-related config entries

Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com>
---
 drivers/bcma/Kconfig | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/drivers/bcma/Kconfig b/drivers/bcma/Kconfig
index b5c48a8..54f81c5 100644
--- a/drivers/bcma/Kconfig
+++ b/drivers/bcma/Kconfig
@@ -3,11 +3,8 @@ config BCMA_POSSIBLE
 	depends on HAS_IOMEM && HAS_DMA
 	default y
 
-menu "Broadcom specific AMBA"
-	depends on BCMA_POSSIBLE
-
-config BCMA
-	tristate "BCMA support"
+menuconfig BCMA
+	tristate "Broadcom specific AMBA"
 	depends on BCMA_POSSIBLE
 	help
 	  Bus driver for Broadcom specific Advanced Microcontroller Bus
@@ -117,5 +114,3 @@ config BCMA_DEBUG
 	  This turns on additional debugging messages.
 
 	  If unsure, say N
-
-endmenu
-- 
2.9.3

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

* Re: [PATCH RFC] Make BCMA a menuconfig to ease disabling it all
  2017-04-17 10:07 ` [PATCH RFC] Make BCMA a menuconfig to ease disabling it all Vincent Legoll
  2017-04-17 10:07   ` [PATCH] " Vincent Legoll
@ 2017-04-17 10:11   ` Vincent Legoll
  1 sibling, 0 replies; 5+ messages in thread
From: Vincent Legoll @ 2017-04-17 10:11 UTC (permalink / raw)
  To: Linux Kernel ML, zajec5, linux-wireless

Argh,

looks like the "--in-reply-to" did not hook it up properly...

This was intended as a reply to:
http://lkml.iu.edu/hypermail/linux/kernel/1704.1/04654.html
Re: [PATCH] Make AMBA a menuconfig to ease disabling it all
from (Fri Apr 14 2017 - 08:33:57 EST)

Sorry

-- 
Vincent Legoll

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

* Re: Make BCMA a menuconfig to ease disabling it all
  2017-04-17 10:07   ` [PATCH] " Vincent Legoll
@ 2017-05-19  6:08     ` Kalle Valo
  2017-08-08 11:45     ` bcma: make " Kalle Valo
  1 sibling, 0 replies; 5+ messages in thread
From: Kalle Valo @ 2017-05-19  6:08 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: linux-kernel, zajec5, linux-wireless, Vincent Legoll

Vincent Legoll <vincent.legoll@gmail.com> wrote:
> No need to get into the submenu to disable all BCMA-related config entries
> 
> Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com>

I would like to get an ack from someone before I'll apply this.

Patch set to Deferred.

-- 
https://patchwork.kernel.org/patch/9683685/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

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

* Re: bcma: make BCMA a menuconfig to ease disabling it all
  2017-04-17 10:07   ` [PATCH] " Vincent Legoll
  2017-05-19  6:08     ` Kalle Valo
@ 2017-08-08 11:45     ` Kalle Valo
  1 sibling, 0 replies; 5+ messages in thread
From: Kalle Valo @ 2017-08-08 11:45 UTC (permalink / raw)
  To: Vincent Legoll; +Cc: linux-kernel, zajec5, linux-wireless, Vincent Legoll

Vincent Legoll <vincent.legoll@gmail.com> wrote:

> No need to get into the submenu to disable all BCMA-related config entries.
> 
> Signed-off-by: Vincent Legoll <vincent.legoll@gmail.com>

Patch applied to wireless-drivers-next.git, thanks.

9ca766b3641f bcma: make BCMA a menuconfig to ease disabling it all

-- 
https://patchwork.kernel.org/patch/9683685/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

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

end of thread, other threads:[~2017-08-08 11:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAEwRq=oz=8T489QZtjcHB03rv_mFY6WAyOUkgMTOrsJuDEPPdw@mail.gmail.com>
2017-04-17 10:07 ` [PATCH RFC] Make BCMA a menuconfig to ease disabling it all Vincent Legoll
2017-04-17 10:07   ` [PATCH] " Vincent Legoll
2017-05-19  6:08     ` Kalle Valo
2017-08-08 11:45     ` bcma: make " Kalle Valo
2017-04-17 10:11   ` [PATCH RFC] Make " Vincent Legoll

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