Loading drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c +2 −2 Original line number Diff line number Diff line Loading @@ -2079,7 +2079,7 @@ dump_phys_mem(void *virt_addr, u32 num_bytes) pages = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL); if (!pages) { vchiq_log_error(vchiq_arm_log_level, "Unable to allocation memory for %d pages\n", "Unable to allocation memory for %d pages", num_pages); return; } Loading @@ -2098,7 +2098,7 @@ dump_phys_mem(void *virt_addr, u32 num_bytes) if (rc < 0) { vchiq_log_error(vchiq_arm_log_level, "Failed to get user pages: %d\n", rc); "Failed to get user pages: %d", rc); goto out; } Loading drivers/staging/vc04_services/interface/vchiq_arm/vchiq_kern_lib.c +3 −3 Original line number Diff line number Diff line Loading @@ -89,17 +89,17 @@ VCHIQ_STATUS_T vchiq_initialise(VCHIQ_INSTANCE_T *instance_out) } if (i == VCHIQ_INIT_RETRIES) { vchiq_log_error(vchiq_core_log_level, "%s: videocore not initialized\n", __func__); "%s: videocore not initialized", __func__); goto failed; } else if (i > 0) { vchiq_log_warning(vchiq_core_log_level, "%s: videocore initialized after %d retries\n", __func__, i); "%s: videocore initialized after %d retries", __func__, i); } instance = kzalloc(sizeof(*instance), GFP_KERNEL); if (!instance) { vchiq_log_error(vchiq_core_log_level, "%s: error allocating vchiq instance\n", __func__); "%s: error allocating vchiq instance", __func__); goto failed; } Loading Loading
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c +2 −2 Original line number Diff line number Diff line Loading @@ -2079,7 +2079,7 @@ dump_phys_mem(void *virt_addr, u32 num_bytes) pages = kmalloc(sizeof(struct page *) * num_pages, GFP_KERNEL); if (!pages) { vchiq_log_error(vchiq_arm_log_level, "Unable to allocation memory for %d pages\n", "Unable to allocation memory for %d pages", num_pages); return; } Loading @@ -2098,7 +2098,7 @@ dump_phys_mem(void *virt_addr, u32 num_bytes) if (rc < 0) { vchiq_log_error(vchiq_arm_log_level, "Failed to get user pages: %d\n", rc); "Failed to get user pages: %d", rc); goto out; } Loading
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_kern_lib.c +3 −3 Original line number Diff line number Diff line Loading @@ -89,17 +89,17 @@ VCHIQ_STATUS_T vchiq_initialise(VCHIQ_INSTANCE_T *instance_out) } if (i == VCHIQ_INIT_RETRIES) { vchiq_log_error(vchiq_core_log_level, "%s: videocore not initialized\n", __func__); "%s: videocore not initialized", __func__); goto failed; } else if (i > 0) { vchiq_log_warning(vchiq_core_log_level, "%s: videocore initialized after %d retries\n", __func__, i); "%s: videocore initialized after %d retries", __func__, i); } instance = kzalloc(sizeof(*instance), GFP_KERNEL); if (!instance) { vchiq_log_error(vchiq_core_log_level, "%s: error allocating vchiq instance\n", __func__); "%s: error allocating vchiq instance", __func__); goto failed; } Loading