diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:08:13 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-23 16:30:58 +0000 |
commit | 977673894ff486af2ff74ba5585ca6039701eb8f (patch) | |
tree | b9719dc91560c7f5fcb791da0c767979e9bb48e0 /src/soc/qualcomm/ipq40xx/blobs_init.c | |
parent | 334772008c547d971e2591ef53bd570c176572ed (diff) |
src/soc/qualcomm: Remove unnecessary space after casts
Change-Id: Ic6c711fe3fad19c24ca4c01f8d0a4bc002f14bd6
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69807
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/qualcomm/ipq40xx/blobs_init.c')
-rw-r--r-- | src/soc/qualcomm/ipq40xx/blobs_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/qualcomm/ipq40xx/blobs_init.c b/src/soc/qualcomm/ipq40xx/blobs_init.c index 60e4f0de04..ef19053692 100644 --- a/src/soc/qualcomm/ipq40xx/blobs_init.c +++ b/src/soc/qualcomm/ipq40xx/blobs_init.c @@ -31,7 +31,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. */ |