diff options
-rw-r--r-- | crypto/async_tx/async_xor.c | 2 | ||||
-rw-r--r-- | drivers/dma/Kconfig | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/crypto/async_tx/async_xor.c b/crypto/async_tx/async_xor.c index 95fe2c8d6c51..90dd3f8bd283 100644 --- a/crypto/async_tx/async_xor.c +++ b/crypto/async_tx/async_xor.c | |||
@@ -300,7 +300,7 @@ EXPORT_SYMBOL_GPL(async_xor_zero_sum); | |||
300 | 300 | ||
301 | static int __init async_xor_init(void) | 301 | static int __init async_xor_init(void) |
302 | { | 302 | { |
303 | #ifdef CONFIG_DMA_ENGINE | 303 | #ifdef CONFIG_ASYNC_TX_DMA |
304 | /* To conserve stack space the input src_list (array of page pointers) | 304 | /* To conserve stack space the input src_list (array of page pointers) |
305 | * is reused to hold the array of dma addresses passed to the driver. | 305 | * is reused to hold the array of dma addresses passed to the driver. |
306 | * This conversion is only possible when dma_addr_t is less than the | 306 | * This conversion is only possible when dma_addr_t is less than the |
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 3b3c01b6f1ee..babf214a509b 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | menuconfig DMADEVICES | 5 | menuconfig DMADEVICES |
6 | bool "DMA Engine support" | 6 | bool "DMA Engine support" |
7 | depends on !HIGHMEM64G && HAS_DMA | 7 | depends on HAS_DMA |
8 | help | 8 | help |
9 | DMA engines can do asynchronous data transfers without | 9 | DMA engines can do asynchronous data transfers without |
10 | involving the host CPU. Currently, this framework can be | 10 | involving the host CPU. Currently, this framework can be |
@@ -100,7 +100,7 @@ config NET_DMA | |||
100 | 100 | ||
101 | config ASYNC_TX_DMA | 101 | config ASYNC_TX_DMA |
102 | bool "Async_tx: Offload support for the async_tx api" | 102 | bool "Async_tx: Offload support for the async_tx api" |
103 | depends on DMA_ENGINE | 103 | depends on DMA_ENGINE && !HIGHMEM64G |
104 | help | 104 | help |
105 | This allows the async_tx api to take advantage of offload engines for | 105 | This allows the async_tx api to take advantage of offload engines for |
106 | memcpy, memset, xor, and raid6 p+q operations. If your platform has | 106 | memcpy, memset, xor, and raid6 p+q operations. If your platform has |