All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PCI: iproc_bcma: allow build as module
@ 2015-07-25 19:15 Hauke Mehrtens
  2015-08-11 20:12 ` Bjorn Helgaas
  2015-08-11 20:36 ` Bjorn Helgaas
  0 siblings, 2 replies; 4+ messages in thread
From: Hauke Mehrtens @ 2015-07-25 19:15 UTC (permalink / raw)
  To: bhelgaas; +Cc: linux-pci, zajec5, rjui, Hauke Mehrtens

Changes this to tristate to make it possible to build this driver as a
module.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 drivers/pci/host/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
index c132bdd..e339a8c 100644
--- a/drivers/pci/host/Kconfig
+++ b/drivers/pci/host/Kconfig
@@ -135,7 +135,7 @@ config PCIE_IPROC_PLATFORM
 	  through the generic platform bus interface
 
 config PCIE_IPROC_BCMA
-	bool "Broadcom iProc PCIe BCMA bus driver"
+	tristate "Broadcom iProc PCIe BCMA bus driver"
 	depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
 	select PCIE_IPROC
 	select BCMA
-- 
2.1.4


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

* Re: [PATCH] PCI: iproc_bcma: allow build as module
  2015-07-25 19:15 [PATCH] PCI: iproc_bcma: allow build as module Hauke Mehrtens
@ 2015-08-11 20:12 ` Bjorn Helgaas
  2015-08-11 20:22   ` Ray Jui
  2015-08-11 20:36 ` Bjorn Helgaas
  1 sibling, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2015-08-11 20:12 UTC (permalink / raw)
  To: Hauke Mehrtens
  Cc: linux-pci, zajec5, rjui, Scott Branden, bcm-kernel-feedback-list

[+cc Scott, bcm-kernel-feedback-list]

On Sat, Jul 25, 2015 at 09:15:24PM +0200, Hauke Mehrtens wrote:
> Changes this to tristate to make it possible to build this driver as a
> module.
> 
> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

Waiting for an ack from Ray or Scott.

> ---
>  drivers/pci/host/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
> index c132bdd..e339a8c 100644
> --- a/drivers/pci/host/Kconfig
> +++ b/drivers/pci/host/Kconfig
> @@ -135,7 +135,7 @@ config PCIE_IPROC_PLATFORM
>  	  through the generic platform bus interface
>  
>  config PCIE_IPROC_BCMA
> -	bool "Broadcom iProc PCIe BCMA bus driver"
> +	tristate "Broadcom iProc PCIe BCMA bus driver"
>  	depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
>  	select PCIE_IPROC
>  	select BCMA
> -- 
> 2.1.4
> 

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

* Re: [PATCH] PCI: iproc_bcma: allow build as module
  2015-08-11 20:12 ` Bjorn Helgaas
@ 2015-08-11 20:22   ` Ray Jui
  0 siblings, 0 replies; 4+ messages in thread
From: Ray Jui @ 2015-08-11 20:22 UTC (permalink / raw)
  To: Bjorn Helgaas, Hauke Mehrtens
  Cc: linux-pci, zajec5, rjui, Scott Branden, bcm-kernel-feedback-list


On 8/11/2015 1:12 PM, Bjorn Helgaas wrote:
> [+cc Scott, bcm-kernel-feedback-list]
> 
> On Sat, Jul 25, 2015 at 09:15:24PM +0200, Hauke Mehrtens wrote:
>> Changes this to tristate to make it possible to build this driver as a
>> module.
>>
>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
> 
> Waiting for an ack from Ray or Scott.
> 
>> ---
>>  drivers/pci/host/Kconfig | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
>> index c132bdd..e339a8c 100644
>> --- a/drivers/pci/host/Kconfig
>> +++ b/drivers/pci/host/Kconfig
>> @@ -135,7 +135,7 @@ config PCIE_IPROC_PLATFORM
>>  	  through the generic platform bus interface
>>  
>>  config PCIE_IPROC_BCMA
>> -	bool "Broadcom iProc PCIe BCMA bus driver"
>> +	tristate "Broadcom iProc PCIe BCMA bus driver"

This looks fine. I also build test it to make sure there's no export
symbol related issues.

Acked-by: Ray Jui <rjui@broadcom.com>

Thanks,

Ray

>>  	depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
>>  	select PCIE_IPROC
>>  	select BCMA
>> -- 
>> 2.1.4
>>

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

* Re: [PATCH] PCI: iproc_bcma: allow build as module
  2015-07-25 19:15 [PATCH] PCI: iproc_bcma: allow build as module Hauke Mehrtens
  2015-08-11 20:12 ` Bjorn Helgaas
@ 2015-08-11 20:36 ` Bjorn Helgaas
  1 sibling, 0 replies; 4+ messages in thread
From: Bjorn Helgaas @ 2015-08-11 20:36 UTC (permalink / raw)
  To: Hauke Mehrtens; +Cc: linux-pci, zajec5, rjui

On Sat, Jul 25, 2015 at 09:15:24PM +0200, Hauke Mehrtens wrote:
> Changes this to tristate to make it possible to build this driver as a
> module.
> 
> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

Applied with Ray's ack to pci/host-iproc for v4.3, thanks!

> ---
>  drivers/pci/host/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/pci/host/Kconfig b/drivers/pci/host/Kconfig
> index c132bdd..e339a8c 100644
> --- a/drivers/pci/host/Kconfig
> +++ b/drivers/pci/host/Kconfig
> @@ -135,7 +135,7 @@ config PCIE_IPROC_PLATFORM
>  	  through the generic platform bus interface
>  
>  config PCIE_IPROC_BCMA
> -	bool "Broadcom iProc PCIe BCMA bus driver"
> +	tristate "Broadcom iProc PCIe BCMA bus driver"
>  	depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
>  	select PCIE_IPROC
>  	select BCMA
> -- 
> 2.1.4
> 

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

end of thread, other threads:[~2015-08-11 20:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-25 19:15 [PATCH] PCI: iproc_bcma: allow build as module Hauke Mehrtens
2015-08-11 20:12 ` Bjorn Helgaas
2015-08-11 20:22   ` Ray Jui
2015-08-11 20:36 ` Bjorn Helgaas

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.