Message ID | 1589185530-28170-1-git-send-email-hayashi.kunihiko@socionext.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 6a091404bf95f1e17d4ad149f1c010a9360e88ba |
Headers | show |
Series | [1/2] spi: uniphier: Depend on HAS_IOMEM | expand |
On Mon, 11 May 2020 17:25:29 +0900, Kunihiko Hayashi wrote: > The driver uses devm_ioremap_resource() which is only available when > CONFIG_HAS_IOMEM is set, so the driver depends on this option. Applied to local tree asoc/for-5.7 Thanks! [1/2] spi: uniphier: Depend on HAS_IOMEM (no commit info) [2/2] spi: uniphier: Use devm_platform_get_and_ioremap_resource() to simplify code (no commit info) 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
On Mon, 11 May 2020 17:25:29 +0900, Kunihiko Hayashi wrote: > The driver uses devm_ioremap_resource() which is only available when > CONFIG_HAS_IOMEM is set, so the driver depends on this option. Applied to local tree spi/for-5.7 Thanks! [1/2] spi: uniphier: Depend on HAS_IOMEM (no commit info) [2/2] spi: uniphier: Use devm_platform_get_and_ioremap_resource() to simplify code (no commit info) 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 17e7e4a..099d6a7 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig @@ -844,6 +844,7 @@ config SPI_TXX9 config SPI_UNIPHIER tristate "Socionext UniPhier SPI Controller" depends on (ARCH_UNIPHIER || COMPILE_TEST) && OF + depends on HAS_IOMEM help This enables a driver for the Socionext UniPhier SoC SCSSI SPI controller.
The driver uses devm_ioremap_resource() which is only available when CONFIG_HAS_IOMEM is set, so the driver depends on this option. Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> --- drivers/spi/Kconfig | 1 + 1 file changed, 1 insertion(+)