From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8C55BC433DB for ; Thu, 31 Dec 2020 08:51:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 51B2922262 for ; Thu, 31 Dec 2020 08:51:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726356AbgLaIut (ORCPT ); Thu, 31 Dec 2020 03:50:49 -0500 Received: from mail.baikalelectronics.com ([87.245.175.226]:35304 "EHLO mail.baikalelectronics.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726130AbgLaIut (ORCPT ); Thu, 31 Dec 2020 03:50:49 -0500 Date: Thu, 31 Dec 2020 11:49:56 +0300 From: Serge Semin To: Greg Kroah-Hartman CC: , , kernel test robot , Randy Dunlap , Ramil Zaripov , Mark Brown , , Sasha Levin Subject: Re: [PATCH 5.10 134/717] spi: dw: fix build error by selecting MULTIPLEXER Message-ID: <20201231084956.ckobqvr5mdpcdxkc@mobilestation> References: <20201228125020.963311703@linuxfoundation.org> <20201228125027.369952724@linuxfoundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20201228125027.369952724@linuxfoundation.org> X-ClientProxiedBy: MAIL.baikal.int (192.168.51.25) To mail (192.168.51.25) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 > > [ 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 > Signed-off-by: Randy Dunlap > Cc: Serge Semin > Cc: Ramil Zaripov > Cc: Mark Brown > Cc: linux-spi@vger.kernel.org > Acked-by: Serge Semin > Link: https://lore.kernel.org/r/20201116040721.8001-1-rdunlap@infradead.org > Signed-off-by: Mark Brown > Signed-off-by: Sasha Levin > --- > 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 > > >