aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/ipq806x/blobs_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/qualcomm/ipq806x/blobs_init.c')
-rw-r--r--src/soc/qualcomm/ipq806x/blobs_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/qualcomm/ipq806x/blobs_init.c b/src/soc/qualcomm/ipq806x/blobs_init.c
index 15068a59de..851ee814d4 100644
--- a/src/soc/qualcomm/ipq806x/blobs_init.c
+++ b/src/soc/qualcomm/ipq806x/blobs_init.c
@@ -27,7 +27,7 @@ static void *load_ipq_blob(const char *file_name)
(blob_mbn->mbn_total_size > blob_size))
return NULL;
- blob_dest = (void *) blob_mbn->mbn_destination;
+ blob_dest = (void *)blob_mbn->mbn_destination;
if (blob_mbn->mbn_destination) {
/* Copy the blob to the appropriate memory location. */
memcpy(blob_dest, blob_mbn + 1, blob_mbn->mbn_total_size);
@@ -99,7 +99,7 @@ void start_rpm(void)
return;
}
- load_addr = (u32) load_ipq_blob("rpm.mbn");
+ load_addr = (u32)load_ipq_blob("rpm.mbn");
if (!load_addr)
die("could not find or map RPM code\n");