[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1569945867-82243-4-git-send-email-john.garry@huawei.com>
Date: Wed, 2 Oct 2019 00:04:27 +0800
From: John Garry <john.garry@...wei.com>
To: <xuwei5@...ilicon.com>
CC: <linuxarm@...wei.com>, <linux-kernel@...r.kernel.org>,
<arnd@...db.de>, <bhelgaas@...gle.com>, <olof@...om.net>,
John Garry <john.garry@...wei.com>
Subject: [PATCH 3/3] bus: hisi_lpc: Expand build test coverage
Currently the driver will only ever be built for ARM64 because it selects
CONFIG_INDIRECT_PIO, which itself depends on ARM64.
Expand build test coverage for the driver to other architectures by only
selecting CONFIG_INDIRECT_PIO for ARM64, when we really want it.
Signed-off-by: John Garry <john.garry@...wei.com>
---
drivers/bus/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/bus/Kconfig b/drivers/bus/Kconfig
index 6b331061d34b..44cb4b6bea18 100644
--- a/drivers/bus/Kconfig
+++ b/drivers/bus/Kconfig
@@ -41,8 +41,8 @@ config MOXTET
config HISILICON_LPC
bool "Support for ISA I/O space on HiSilicon Hip06/7"
- depends on ARM64 && (ARCH_HISI || COMPILE_TEST)
- select INDIRECT_PIO
+ depends on (ARM64 && ARCH_HISI) || COMPILE_TEST
+ select INDIRECT_PIO if ARM64
help
Driver to enable I/O access to devices attached to the Low Pin
Count bus on the HiSilicon Hip06/7 SoC.
--
2.17.1
Powered by blists - more mailing lists