|
@@ -212,7 +212,7 @@ static int fit_image_verify_sig(const void *fit, int image_noffset,
|
|
|
int ret;
|
|
|
|
|
|
/* Process all hash subnodes of the component image node */
|
|
|
- fdt_for_each_subnode(fit, noffset, image_noffset) {
|
|
|
+ fdt_for_each_subnode(noffset, fit, image_noffset) {
|
|
|
const char *name = fit_get_name(fit, noffset, NULL);
|
|
|
|
|
|
if (!strncmp(name, FIT_SIG_NODENAME,
|
|
@@ -260,7 +260,7 @@ int fit_image_verify_required_sigs(const void *fit, int image_noffset,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
- fdt_for_each_subnode(sig_blob, noffset, sig_node) {
|
|
|
+ fdt_for_each_subnode(noffset, sig_blob, sig_node) {
|
|
|
const char *required;
|
|
|
int ret;
|
|
|
|
|
@@ -393,7 +393,7 @@ static int fit_config_verify_sig(const void *fit, int conf_noffset,
|
|
|
int ret;
|
|
|
|
|
|
/* Process all hash subnodes of the component conf node */
|
|
|
- fdt_for_each_subnode(fit, noffset, conf_noffset) {
|
|
|
+ fdt_for_each_subnode(noffset, fit, conf_noffset) {
|
|
|
const char *name = fit_get_name(fit, noffset, NULL);
|
|
|
|
|
|
if (!strncmp(name, FIT_SIG_NODENAME,
|
|
@@ -438,7 +438,7 @@ int fit_config_verify_required_sigs(const void *fit, int conf_noffset,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
- fdt_for_each_subnode(sig_blob, noffset, sig_node) {
|
|
|
+ fdt_for_each_subnode(noffset, sig_blob, sig_node) {
|
|
|
const char *required;
|
|
|
int ret;
|
|
|
|