Kconfig: Move BOUNCE_BUFFER under driver options
authorSimon Glass <sjg@chromium.org>
Fri, 11 Sep 2020 02:21:25 +0000 (20:21 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Oct 2020 16:02:25 +0000 (12:02 -0400)
This option does not belong at the top level. Move it under generic
driver options.

Signed-off-by: Simon Glass <sjg@chromium.org>
common/Kconfig
drivers/core/Kconfig

index 132d105..a1a898b 100644 (file)
@@ -532,17 +532,6 @@ endmenu
 
 endmenu                # Init options
 
-config BOUNCE_BUFFER
-       bool "Include bounce buffer API"
-       help
-         Some peripherals support DMA from a subset of physically
-         addressable memory only.  To support such peripherals, the
-         bounce buffer API uses a temporary buffer: it copies data
-         to/from DMA regions while managing cache operations.
-
-         A second possible use of bounce buffers is their ability to
-         provide aligned buffers for DMA operations.
-
 config BOARD_TYPES
        bool "Call get_board_type() to get and display the board type"
        help
index 1ca5d66..07d3a6a 100644 (file)
@@ -286,4 +286,15 @@ config INTEL_ACPIGEN
          information such as P states and T stages. Also included is a way
          to create a GNVS table and set it up.
 
+config BOUNCE_BUFFER
+       bool "Include bounce buffer API"
+       help
+         Some peripherals support DMA from a subset of physically
+         addressable memory only.  To support such peripherals, the
+         bounce buffer API uses a temporary buffer: it copies data
+         to/from DMA regions while managing cache operations.
+
+         A second possible use of bounce buffers is their ability to
+         provide aligned buffers for DMA operations.
+
 endmenu