Message ID | 20201127144612.4204-1-Sergey.Semin@baikalelectronics.ru (mailing list archive) |
---|---|
State | Accepted |
Commit | 7218838109fef61cdec988ff728e902d434c9cc5 |
Headers | show |
Series | [v2] spi: dw-bt1: Fix undefined devm_mux_control_get symbol | expand |
On Fri, 27 Nov 2020 17:46:11 +0300, Serge Semin wrote: > I mistakenly added the select attributes to the SPI_DW_BT1_DIRMAP config > instead of having them defined in SPI_DW_BT1. If the kernel doesn't have > the MULTIPLEXER and MUX_MMIO configs manually enabled and the > SPI_DW_BT1_DIRMAP config hasn't been selected, Baikal-T1 SPI device will > always fail to be probed by the driver. Fix that and the error reported by > the test robot: > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: dw-bt1: Fix undefined devm_mux_control_get symbol commit: 7218838109fef61cdec988ff728e902d434c9cc5 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 415d57b2057f..0707068ffe47 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -255,6 +255,8 @@ 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 + select MUX_MMIO 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, @@ -268,8 +270,6 @@ config SPI_DW_BT1 config SPI_DW_BT1_DIRMAP bool "Directly mapped Baikal-T1 Boot SPI flash support" depends on SPI_DW_BT1 - select MULTIPLEXER - select MUX_MMIO help Directly mapped SPI flash memory is an interface specific to the Baikal-T1 System Boot Controller. It is a 16MB MMIO region, which