aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/via/nano/update_ucode.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-07-08 12:30:02 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-07-09 09:26:18 +0000
commit6c9737b1ac5b71f705350a960dee0e68b9afb440 (patch)
treee5c11d8b1586d034b04e2517752c21aaacc3995b /src/cpu/via/nano/update_ucode.c
parent2106638ec2d7869f396310882bf5e9fa52dbf3c0 (diff)
src/{arch,commonlib,cpu}: Use "foo *bar" instead of "foo* bar"
Change-Id: I8e4118c5c5d70719ad7dc5f9ff9f86d93fa498ac Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26942 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/cpu/via/nano/update_ucode.c')
-rw-r--r--src/cpu/via/nano/update_ucode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/via/nano/update_ucode.c b/src/cpu/via/nano/update_ucode.c
index 9ff66e7db8..7c631a6dda 100644
--- a/src/cpu/via/nano/update_ucode.c
+++ b/src/cpu/via/nano/update_ucode.c
@@ -61,7 +61,7 @@ static ucode_validity nano_ucode_is_valid(const nano_ucode_header *ucode)
* Two's complement done over the entire file, including the header */
int i;
u32 check = 0;
- u32 *raw = (void*) ucode;
+ u32 *raw = (void *) ucode;
for (i = 0; i < ((ucode->total_size) >> 2); i++) {
check += raw[i];
}