Message ID | 1411712311.23531.0.camel@phoenix (mailing list archive) |
---|---|
State | Accepted |
Commit | 933fc7b06ca62741fd5067edab13068d13b3cb35 |
Headers | show |
On 26 September 2014 08:18, Axel Lin <axel.lin@ingics.com> wrote: > config SPI_BCM53XX needs to depend on BCMA_POSSIBLE and select BCMA. > This fixes below build error: > ERROR: "bcma_driver_unregister" [drivers/spi/spi-bcm53xx.ko] undefined! > ERROR: "__bcma_driver_register" [drivers/spi/spi-bcm53xx.ko] undefined! Thanks for your patches, look fine! -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Fri, Sep 26, 2014 at 02:18:31PM +0800, Axel Lin wrote: > config SPI_BCM53XX needs to depend on BCMA_POSSIBLE and select BCMA. > This fixes below build error: > ERROR: "bcma_driver_unregister" [drivers/spi/spi-bcm53xx.ko] undefined! > ERROR: "__bcma_driver_register" [drivers/spi/spi-bcm53xx.ko] undefined! Applied both, thanks.
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index dc10453..84e7c9e 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -116,6 +116,8 @@ config SPI_AU1550 config SPI_BCM53XX tristate "Broadcom BCM53xx SPI controller" depends on ARCH_BCM_5301X + depends on BCMA_POSSIBLE + select BCMA help Enable support for the SPI controller on Broadcom BCM53xx ARM SoCs.
config SPI_BCM53XX needs to depend on BCMA_POSSIBLE and select BCMA. This fixes below build error: ERROR: "bcma_driver_unregister" [drivers/spi/spi-bcm53xx.ko] undefined! ERROR: "__bcma_driver_register" [drivers/spi/spi-bcm53xx.ko] undefined! Signed-off-by: Axel Lin <axel.lin@ingics.com> --- drivers/spi/Kconfig | 2 ++ 1 file changed, 2 insertions(+)