* [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER [not found] <20201228125020.963311703@linuxfoundation.org> @ 2020-12-28 12:42 ` Greg Kroah-Hartman 2020-12-31 8:49 ` Serge Semin 0 siblings, 1 reply; 5+ messages in thread From: Greg Kroah-Hartman @ 2020-12-28 12:42 UTC (permalink / raw) To: linux-kernel Cc: Greg Kroah-Hartman, stable, kernel test robot, Randy Dunlap, Serge Semin, Ramil Zaripov, Mark Brown, linux-spi, Serge Semin, Sasha Levin From: Randy Dunlap <rdunlap@infradead.org> [ Upstream commit 1241f0787578136ab58f49adc52f2dcd2bbc4bf2 ] Fix build error for spi-dw-bt1.o by selecting MULTIPLEXER. hppa-linux-ld: drivers/spi/spi-dw-bt1.o: in function `dw_spi_bt1_sys_init': (.text+0x1ac): undefined reference to `devm_mux_control_get' Fixes: abf00907538e ("spi: dw: Add Baikal-T1 SPI Controller glue driver") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Serge Semin <Sergey.Semin@baikalelectronics.ru> Cc: Ramil Zaripov <Ramil.Zaripov@baikalelectronics.ru> Cc: Mark Brown <broonie@kernel.org> Cc: linux-spi@vger.kernel.org Acked-by: Serge Semin <fancer.lancer@gmail.com> Link: https://lore.kernel.org/r/20201116040721.8001-1-rdunlap@infradead.org Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org> --- drivers/spi/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 5cff60de8e834..3fd16b7f61507 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -255,6 +255,7 @@ config SPI_DW_MMIO config SPI_DW_BT1 tristate "Baikal-T1 SPI driver for DW SPI core" depends on MIPS_BAIKAL_T1 || COMPILE_TEST + select MULTIPLEXER help Baikal-T1 SoC is equipped with three DW APB SSI-based MMIO SPI controllers. Two of them are pretty much normal: with IRQ, DMA, -- 2.27.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER 2020-12-28 12:42 ` [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER Greg Kroah-Hartman @ 2020-12-31 8:49 ` Serge Semin 2020-12-31 8:51 ` Greg Kroah-Hartman 0 siblings, 1 reply; 5+ messages in thread From: Serge Semin @ 2020-12-31 8:49 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, stable, kernel test robot, Randy Dunlap, Ramil Zaripov, Mark Brown, linux-spi, Sasha Levin Hello Greg, The next patch has been created to supersede the one you've applied: https://lore.kernel.org/linux-spi/20201127144612.4204-1-Sergey.Semin@baikalelectronics.ru/ Mark has already merged it in his repo. -Sergey On Mon, Dec 28, 2020 at 01:42:12PM +0100, Greg Kroah-Hartman wrote: > From: Randy Dunlap <rdunlap@infradead.org> > > [ Upstream commit 1241f0787578136ab58f49adc52f2dcd2bbc4bf2 ] > > Fix build error for spi-dw-bt1.o by selecting MULTIPLEXER. > > hppa-linux-ld: drivers/spi/spi-dw-bt1.o: in function `dw_spi_bt1_sys_init': > (.text+0x1ac): undefined reference to `devm_mux_control_get' > > Fixes: abf00907538e ("spi: dw: Add Baikal-T1 SPI Controller glue driver") > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Cc: Serge Semin <Sergey.Semin@baikalelectronics.ru> > Cc: Ramil Zaripov <Ramil.Zaripov@baikalelectronics.ru> > Cc: Mark Brown <broonie@kernel.org> > Cc: linux-spi@vger.kernel.org > Acked-by: Serge Semin <fancer.lancer@gmail.com> > Link: https://lore.kernel.org/r/20201116040721.8001-1-rdunlap@infradead.org > Signed-off-by: Mark Brown <broonie@kernel.org> > Signed-off-by: Sasha Levin <sashal@kernel.org> > --- > drivers/spi/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig > index 5cff60de8e834..3fd16b7f61507 100644 > --- a/drivers/spi/Kconfig > +++ b/drivers/spi/Kconfig > @@ -255,6 +255,7 @@ config SPI_DW_MMIO > config SPI_DW_BT1 > tristate "Baikal-T1 SPI driver for DW SPI core" > depends on MIPS_BAIKAL_T1 || COMPILE_TEST > + select MULTIPLEXER > help > Baikal-T1 SoC is equipped with three DW APB SSI-based MMIO SPI > controllers. Two of them are pretty much normal: with IRQ, DMA, > -- > 2.27.0 > > > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER 2020-12-31 8:49 ` Serge Semin @ 2020-12-31 8:51 ` Greg Kroah-Hartman 2020-12-31 9:10 ` Serge Semin 0 siblings, 1 reply; 5+ messages in thread From: Greg Kroah-Hartman @ 2020-12-31 8:51 UTC (permalink / raw) To: Serge Semin Cc: linux-kernel, stable, kernel test robot, Randy Dunlap, Ramil Zaripov, Mark Brown, linux-spi, Sasha Levin On Thu, Dec 31, 2020 at 11:49:56AM +0300, Serge Semin wrote: > Hello Greg, > The next patch has been created to supersede the one you've applied: > https://lore.kernel.org/linux-spi/20201127144612.4204-1-Sergey.Semin@baikalelectronics.ru/ > Mark has already merged it in his repo. Ok, so should that one be queued up as well? Let us know the git commit id of it when it reaches Linus's kernel and we will be glad to take it. thanks, greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER 2020-12-31 8:51 ` Greg Kroah-Hartman @ 2020-12-31 9:10 ` Serge Semin 2020-12-31 9:25 ` Greg Kroah-Hartman 0 siblings, 1 reply; 5+ messages in thread From: Serge Semin @ 2020-12-31 9:10 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Serge Semin, linux-kernel, stable, kernel test robot, Randy Dunlap, Ramil Zaripov, Mark Brown, linux-spi, Sasha Levin On Thu, Dec 31, 2020 at 09:51:21AM +0100, Greg Kroah-Hartman wrote: > On Thu, Dec 31, 2020 at 11:49:56AM +0300, Serge Semin wrote: > > Hello Greg, > > The next patch has been created to supersede the one you've applied: > > https://lore.kernel.org/linux-spi/20201127144612.4204-1-Sergey.Semin@baikalelectronics.ru/ > > Mark has already merged it in his repo. > > Ok, so should that one be queued up as well? Let us know the git commit > id of it when it reaches Linus's kernel and we will be glad to take it. I believe it is already there: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7218838109fef61cdec988ff728e902d434c9cc5 Yeah, it's better to queue that patch up too, otherwise the build error will be indeed fixed by the commit you've merged in, but the probe procedure will still always fail. -Sergey > > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER 2020-12-31 9:10 ` Serge Semin @ 2020-12-31 9:25 ` Greg Kroah-Hartman 0 siblings, 0 replies; 5+ messages in thread From: Greg Kroah-Hartman @ 2020-12-31 9:25 UTC (permalink / raw) To: Serge Semin Cc: Serge Semin, linux-kernel, stable, kernel test robot, Randy Dunlap, Ramil Zaripov, Mark Brown, linux-spi, Sasha Levin On Thu, Dec 31, 2020 at 12:10:34PM +0300, Serge Semin wrote: > On Thu, Dec 31, 2020 at 09:51:21AM +0100, Greg Kroah-Hartman wrote: > > On Thu, Dec 31, 2020 at 11:49:56AM +0300, Serge Semin wrote: > > > Hello Greg, > > > The next patch has been created to supersede the one you've applied: > > > https://lore.kernel.org/linux-spi/20201127144612.4204-1-Sergey.Semin@baikalelectronics.ru/ > > > Mark has already merged it in his repo. > > > > > Ok, so should that one be queued up as well? Let us know the git commit > > id of it when it reaches Linus's kernel and we will be glad to take it. > > I believe it is already there: > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7218838109fef61cdec988ff728e902d434c9cc5 > Yeah, it's better to queue that patch up too, otherwise the build > error will be indeed fixed by the commit you've merged in, but the > probe procedure will still always fail. Ok, now queued up, thanks for letting us know. greg k-h ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-12-31 9:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20201228125020.963311703@linuxfoundation.org>
2020-12-28 12:42 ` [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER Greg Kroah-Hartman
2020-12-31 8:49 ` Serge Semin
2020-12-31 8:51 ` Greg Kroah-Hartman
2020-12-31 9:10 ` Serge Semin
2020-12-31 9:25 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox