entries = roundup_pow_of_two(nr_cpu_ids);
        vpe_proxy.vpes = kcalloc(entries, sizeof(*vpe_proxy.vpes),
                                 GFP_KERNEL);
-       if (!vpe_proxy.vpes) {
-               pr_err("ITS: Can't allocate GICv4 proxy device array\n");
+       if (!vpe_proxy.vpes)
                return -ENOMEM;
-       }
 
        /* Use the last possible DevID */
        devid = GENMASK(device_ids(its) - 1, 0);
 
        its_srat_maps = kmalloc_array(count, sizeof(struct its_srat_map),
                                      GFP_KERNEL);
-       if (!its_srat_maps) {
-               pr_warn("SRAT: Failed to allocate memory for its_srat_maps!\n");
+       if (!its_srat_maps)
                return;
-       }
 
        acpi_table_parse_entries(ACPI_SIG_SRAT,
                        sizeof(struct acpi_table_srat),