zephyr: Remove outdated workaround for Kinetis

Remove this workaround.  The Kinetis flash driver has supported
FLASH_PAGE_LAYOUT since at least January 2018.

Signed-off-by: David Brown <david.brown@linaro.org>
This commit is contained in:
David Brown 2019-10-22 16:55:01 -06:00 committed by David Brown
parent 478ad247b3
commit 8accafd5c7
2 changed files with 0 additions and 17 deletions

View File

@ -23,15 +23,6 @@
#define FLASH_ALIGN FLASH_WRITE_BLOCK_SIZE
/*
* TODO: remove soc_family_kinetis.h once its flash driver supports
* FLASH_PAGE_LAYOUT.
*/
#if defined(CONFIG_SOC_FAMILY_KINETIS)
#include "soc_family_kinetis.h"
#endif
#endif /* !defined(MCUBOOT_TARGET_CONFIG) */
/*
* Sanity check the target support.
*/

View File

@ -1,8 +0,0 @@
/*
* Copyright (c) 2017 Linaro
* SPDX-License-Identifier: Apache-2.0
*/
#ifdef CONFIG_SOC_SERIES_KINETIS_K6X
#define FLASH_AREA_IMAGE_SECTOR_SIZE 0x01000
#endif