diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/wb45n.h | 1 | ||||
-rw-r--r-- | include/configs/zynq-common.h | 2 | ||||
-rw-r--r-- | include/dwmmc.h | 1 | ||||
-rw-r--r-- | include/init.h | 7 |
4 files changed, 3 insertions, 8 deletions
diff --git a/include/configs/wb45n.h b/include/configs/wb45n.h index 0ca5ef8d4d..b516b66c35 100644 --- a/include/configs/wb45n.h +++ b/include/configs/wb45n.h @@ -54,7 +54,6 @@ #define CONFIG_PMECC_CAP 4 #define CONFIG_PMECC_SECTOR_SIZE 512 -#define CONFIG_CMD_MTDPARTS #define CONFIG_RBTREE #define CONFIG_LZO diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h index 98411c4e9f..864f3220f3 100644 --- a/include/configs/zynq-common.h +++ b/include/configs/zynq-common.h @@ -290,6 +290,8 @@ #define CONFIG_SPL_BSS_START_ADDR 0x100000 #define CONFIG_SPL_BSS_MAX_SIZE 0x100000 +#define CONFIG_SPL_LOAD_FIT_ADDRESS 0x10000000 + #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE #endif /* __CONFIG_ZYNQ_COMMON_H */ diff --git a/include/dwmmc.h b/include/dwmmc.h index 0f9d51b557..4ceda5e43c 100644 --- a/include/dwmmc.h +++ b/include/dwmmc.h @@ -56,6 +56,7 @@ #define DWMCI_INTMSK_DTO (1 << 3) #define DWMCI_INTMSK_TXDR (1 << 4) #define DWMCI_INTMSK_RXDR (1 << 5) +#define DWMCI_INTMSK_RCRC (1 << 6) #define DWMCI_INTMSK_DCRC (1 << 7) #define DWMCI_INTMSK_RTO (1 << 8) #define DWMCI_INTMSK_DRTO (1 << 9) diff --git a/include/init.h b/include/init.h index afc953d51e..a58d7a6917 100644 --- a/include/init.h +++ b/include/init.h @@ -109,14 +109,7 @@ int arch_reserve_stacks(void); */ int init_cache_f_r(void); -#if !CONFIG_IS_ENABLED(CPU) -/** - * print_cpuinfo() - Display information about the CPU - * - * Return: 0 if OK, -ve on error - */ int print_cpuinfo(void); -#endif int timer_init(void); int reserve_mmu(void); int misc_init_f(void); |