aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Gray <[email protected]>2023-02-28 10:33:17 +1100
committerWolfram Sang <[email protected]>2023-03-03 20:55:15 +0100
commita76d19e6acb1ef16561b0682cd1a566463fa3d98 (patch)
treed045bc62b812ac740638145726182c110abadc31
parent0a3f9a6b0265b64c02226fcabb5e9a958307913b (diff)
i2c: Disable I2C_APPLE when I2C_PASEMI is a builtin
The ppc64le_allmodconfig sets I2C_PASEMI=y and leaves COMPILE_TEST to default to y and I2C_APPLE to default to m, running into a known incompatible configuration that breaks the build [1]. Specifically, a common dependency (i2c-pasemi-core.o in this case) cannot be used by both builtin and module consumers. Disable I2C_APPLE when I2C_PASEMI is a builtin to prevent this. [1]: https://lore.kernel.org/all/[email protected] Suggested-by: Arnd Bergmann <[email protected]> Signed-off-by: Benjamin Gray <[email protected]> Acked-by: Arnd Bergmann <[email protected]> Acked-by: Sven Peter <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
-rw-r--r--drivers/i2c/busses/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 9b8e84f20604..25eb4e8fd22f 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -914,6 +914,7 @@ config I2C_PASEMI
config I2C_APPLE
tristate "Apple SMBus platform driver"
+ depends on !I2C_PASEMI
depends on ARCH_APPLE || COMPILE_TEST
default ARCH_APPLE
help