mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-10 19:28:17 +00:00
The name disk_access_sdhc.c is ambiguous, actually this driver depends on SPI, rename this file. In addition, move the generic sdhc stuff from C file to head file for other sdhc drivers to use. 1) disk_access_sdhc.c->disk_access_spi_sdhc.c. 2) create .h and move sdhc specifications from .c to .h. Signed-off-by: Jun Yang <jun.yang@nxp.com>
7 lines
297 B
CMake
7 lines
297 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources_ifdef(CONFIG_DISK_ACCESS disk_access.c)
|
|
zephyr_sources_ifdef(CONFIG_DISK_ACCESS_FLASH disk_access_flash.c)
|
|
zephyr_sources_ifdef(CONFIG_DISK_ACCESS_RAM disk_access_ram.c)
|
|
zephyr_sources_ifdef(CONFIG_DISK_ACCESS_SPI_SDHC disk_access_spi_sdhc.c)
|