Commit bf844d64 authored by Andreas Gustafsson's avatar Andreas Gustafsson Committed by popcornmix
Browse files

End log messages in one newline, not two.

parent 52d350fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}
@@ -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;
	}

+3 −3
Original line number Diff line number Diff line
@@ -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;
	}