MMC was using SDMMC kconfigs to build disk driver. This is incorrect, MMC and SDMMC should not be sharing Kconfigs. Split the drivers/disk/Kconfig.sdmmc into drivers/disk/Kconfig.mmc and drivers/disk/Kconfig.sdmmc. Also update disk tests to account for new MMC Kconfigs. Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
17 lines
345 B
Plaintext
17 lines
345 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISK_DRIVERS
|
|
bool "Disk Drivers"
|
|
help
|
|
Disk Driver configuration
|
|
|
|
if DISK_DRIVERS
|
|
|
|
source "drivers/disk/Kconfig.ram"
|
|
source "drivers/disk/Kconfig.flash"
|
|
source "drivers/disk/Kconfig.sdmmc"
|
|
source "drivers/disk/Kconfig.mmc"
|
|
|
|
endif # DISK_DRIVERS
|