diff options
Diffstat (limited to 'common/common_fit.c')
-rw-r--r-- | common/common_fit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/common_fit.c b/common/common_fit.c index 219674d4673..cde2dc45e90 100644 --- a/common/common_fit.c +++ b/common/common_fit.c @@ -22,6 +22,11 @@ ulong fdt_getprop_u32(const void *fdt, int node, const char *prop) return fdt32_to_cpu(*cell); } +__weak int board_fit_config_name_match(const char *name) +{ + return -EINVAL; +} + /* * Iterate over all /configurations subnodes and call a platform specific * function to find the matching configuration. |