diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-22 21:50:39 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-06 16:16:24 +0300 |
commit | 6115f1c4fe81015369e110ea9830a6e36710677c (patch) | |
tree | b0caf1d699dcdfc11de7ed8d1f382711273d2d04 /include/configs/cm_t43.h | |
parent | 871fd508fccc58fd0d249841c918b99121d03d8c (diff) | |
download | u-boot-6115f1c4fe81015369e110ea9830a6e36710677c.tar.xz |
Convert CONFIG_NAND_OMAP_ECCSCHEME to Kconfig
The values of CONFIG_NAND_OMAP_ECCSCHEME map to the enum in
include/linux/mtd/omap_gpmc.h for valid ECC schemes. Make which one we
will use be a choice statement, enumerating the ones which we have
implemented.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs/cm_t43.h')
-rw-r--r-- | include/configs/cm_t43.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/cm_t43.h b/include/configs/cm_t43.h index 49916c98a7..e250dc92dd 100644 --- a/include/configs/cm_t43.h +++ b/include/configs/cm_t43.h @@ -24,7 +24,6 @@ /* NAND support */ #define CONFIG_SYS_NAND_ECCSIZE 512 #define CONFIG_SYS_NAND_ECCBYTES 14 -#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \ 10, 11, 12, 13, 14, 15, 16, 17, \ 18, 19, 20, 21, 22, 23, 24, 25, \ |