diff options
author | Vamsi Attunuru <[email protected]> | 2024-07-17 09:37:39 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-18 09:02:37 +0200 |
commit | 5418e6dfc905b3ccc1e01bdad97d948697b20100 (patch) | |
tree | 68ac0237e0a451efef696e357f5017ca056375b4 | |
parent | ff14bfb7bc0480c343356b82c126290a4774bcbe (diff) |
misc: Kconfig: exclude mrvl-cn10k-dpi compilation for 32-bit systems
Upon adding CONFIG_ARCH_THUNDER & CONFIG_COMPILE_TEST dependency,
compilation errors arise on 32-bit ARM with writeq() & readq() calls
which are used for accessing 64-bit values.
Since DPI hardware only works with 64-bit register accesses, using
CONFIG_64BIT dependency to skip compilation on 32-bit systems.
Fixes: a5e43e2d202d ("misc: Kconfig: add a new dependency for MARVELL_CN10K_DPI")
Signed-off-by: Vamsi Attunuru <[email protected]>
Tested-by: Nathan Chancellor <[email protected]>
Tested-by: Jeff Johnson <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/misc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index f3bb75384627..41c3d2821a78 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -588,7 +588,7 @@ config NSM config MARVELL_CN10K_DPI tristate "Octeon CN10K DPI driver" depends on PCI - depends on ARCH_THUNDER || COMPILE_TEST + depends on ARCH_THUNDER || (COMPILE_TEST && 64BIT) help Enables Octeon CN10K DMA packet interface (DPI) driver which intializes DPI hardware's physical function (PF) device's |