diff --git a/include/lib/fconf/fconf.h b/include/lib/fconf/fconf.h index 131c54285..37620215a 100644 --- a/include/lib/fconf/fconf.h +++ b/include/lib/fconf/fconf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2020, ARM Limited. All rights reserved. + * Copyright (c) 2019-2022, ARM Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -21,7 +21,7 @@ */ #define FCONF_REGISTER_POPULATOR(config, name, callback) \ __attribute__((used, section(".fconf_populator"))) \ - const struct fconf_populator (name##__populator) = { \ + static const struct fconf_populator (name##__populator) = { \ .config_type = (#config), \ .info = (#name), \ .populate = (callback) \