zephyr/drivers/flash/Kconfig.sam
Benjamin Valentin 4d9486fc22 soc: sam0: Enable generic peripheral selection
Make sure that when e.g. CONFIG_SERIAL is set, CONFIG_UART_SAM0 is
selected automatically when the sam0 SoC family is used.

Signed-off-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
2019-04-19 14:37:17 -05:00

17 lines
334 B
Plaintext

# Kconfig - Atmel SAM flash driver config
#
# Copyright (c) 2018 Aurelien Jarno
# SPDX-License-Identifier: Apache-2.0
if SOC_FAMILY_SAM
menuconfig SOC_FLASH_SAM
bool "Atmel SAM flash driver"
default y
select FLASH_HAS_PAGE_LAYOUT
select FLASH_HAS_DRIVER_ENABLED
help
Enable the Atmel SAM series internal flash driver.
endif