diff options
author | Even Xu <even.xu@intel.com> | 2021-06-10 14:21:52 +0800 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-06-14 15:55:09 +0200 |
commit | 65e4122d2ea758a1834a5ddf9c555a4d2c1dd66a (patch) | |
tree | ef9a8db12f6cd0de327efbdfe49f7d14d966b7d1 | |
parent | c57179c73562e31d39139ac245b8a2d337e1823b (diff) | |
download | linux-65e4122d2ea758a1834a5ddf9c555a4d2c1dd66a.tar.bz2 |
HID: intel-ish-hid: Set ISH driver depends on x86
During ISH DMA enabling, some platforms (such as EHL) don't
support cache snooping, driver needs involve clflush_cache_range
API which isn't supported by all archs (such as ARM).
Considering ISH only exists on Intel platforms, add the dependence
in Kconfig to avoid build warnings or errors on other archs.
Acked-by: Pandruvada, Srinivas <srinivas.pandruvada@intel.com>
Signed-off-by: Even Xu <even.xu@intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/intel-ish-hid/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/intel-ish-hid/Kconfig b/drivers/hid/intel-ish-hid/Kconfig index c6c9cfe2475e..689da84a520d 100644 --- a/drivers/hid/intel-ish-hid/Kconfig +++ b/drivers/hid/intel-ish-hid/Kconfig @@ -5,6 +5,7 @@ menu "Intel ISH HID support" config INTEL_ISH_HID tristate "Intel Integrated Sensor Hub" default n + depends on X86 select HID help The Integrated Sensor Hub (ISH) enables the ability to offload |