Fixing checkpatch.pl warnings.

Most warnings are "Missing a blank line after declarations". I'm also
adding blank lines between multi-line comments and statements.

Ran with --ignore BRACES,SPDX_LICENSE_TAG,VOLATILE,SPLIT_STRING,
AVOID_EXTERNS,USE_SPINLOCK_T,NEW_TYPEDEFS,INITIALISED_STATIC,
FILE_PATH_CHANGES to reduce noise. Now there is only one type of
warning, with two instances:

WARNING: Prefer using '"%s...", __func__' to using 'dmb', this function's name, in a string
+       __asm__ volatile("dmb sy");

WARNING: Prefer using '"%s...", __func__' to using 'dsb', this function's name, in a string
+       __asm__ volatile("dsb sy");

Change-Id: Id837feef86dc81ba84de1809e76653ddce814422
diff --git a/src/load.c b/src/load.c
index 4b0880c..38159a0 100644
--- a/src/load.c
+++ b/src/load.c
@@ -177,8 +177,10 @@
 {
 	size_t i;
 
-	/* TODO(b/116191358): Consider being cleverer about how we pack VMs
-	 * together, with a non-greedy algorithm. */
+	/*
+	 * TODO(b/116191358): Consider being cleverer about how we pack VMs
+	 * together, with a non-greedy algorithm.
+	 */
 	for (i = 0; i < mem_ranges_count; ++i) {
 		if (size_to_find <=
 		    pa_addr(mem_ranges[i].end) - pa_addr(mem_ranges[i].begin)) {