diff --git a/common/Kconfig b/common/Kconfig index 132d105160..a1a898babd 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -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 diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index 1ca5d66141..07d3a6a7a4 100644 --- a/drivers/core/Kconfig +++ b/drivers/core/Kconfig @@ -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