diff options
author | Tom Rini <trini@konsulko.com> | 2022-11-10 10:09:02 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-11-10 10:09:40 -0500 |
commit | 0cbeed4f6648e0e4966475e3544280a69ecb59d3 (patch) | |
tree | a7b4b6b44bc3d43628e654f0c75ef2fab49ffd1b /arch/arm/mach-socfpga/wrap_iocsr_config.c | |
parent | 77b5cc2948f5d93fe3d275302f596ffd8701a875 (diff) | |
parent | cc1159bbfa94a60e4180846e480b887cf91fa722 (diff) |
Merge branch '2022-11-10-symbol-migrations'
- Migrate a number of CONFIG symbols to Kconfig and start migrating some
symbol families from CONFIG to the CFG namespace.
Diffstat (limited to 'arch/arm/mach-socfpga/wrap_iocsr_config.c')
-rw-r--r-- | arch/arm/mach-socfpga/wrap_iocsr_config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-socfpga/wrap_iocsr_config.c b/arch/arm/mach-socfpga/wrap_iocsr_config.c index f810fade92a..ce86f04cad1 100644 --- a/arch/arm/mach-socfpga/wrap_iocsr_config.c +++ b/arch/arm/mach-socfpga/wrap_iocsr_config.c @@ -17,19 +17,19 @@ int iocsr_get_config_table(const unsigned int chain_id, switch (chain_id) { case 0: *table = iocsr_scan_chain0_table; - *table_len = CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH; + *table_len = CFG_HPS_IOCSR_SCANCHAIN0_LENGTH; break; case 1: *table = iocsr_scan_chain1_table; - *table_len = CONFIG_HPS_IOCSR_SCANCHAIN1_LENGTH; + *table_len = CFG_HPS_IOCSR_SCANCHAIN1_LENGTH; break; case 2: *table = iocsr_scan_chain2_table; - *table_len = CONFIG_HPS_IOCSR_SCANCHAIN2_LENGTH; + *table_len = CFG_HPS_IOCSR_SCANCHAIN2_LENGTH; break; case 3: *table = iocsr_scan_chain3_table; - *table_len = CONFIG_HPS_IOCSR_SCANCHAIN3_LENGTH; + *table_len = CFG_HPS_IOCSR_SCANCHAIN3_LENGTH; break; default: return -EINVAL; |