From: Christian Gmeiner <christian.gmeiner@gmail.com>
Date: Mon, 30 Jul 2018 11:22:06 +0000 (+0200)
Subject: smbios: fix checkstyle error
X-Git-Tag: v2025.01-rc5-pxa1908~3778
X-Git-Url: http://git.dujemihanovic.xyz/img/html/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=5113ff8a910406af0412e5618e87bdd55e07c97e;p=u-boot.git

smbios: fix checkstyle error

Fixes the following chechpatch -f error:

ERROR: "(foo*)" should be "(foo *)"
+               strncpy((char*)t->uuid, serial_str, sizeof(t->uuid));

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

diff --git a/lib/smbios.c b/lib/smbios.c
index df3d26b071..40c921984c 100644
--- a/lib/smbios.c
+++ b/lib/smbios.c
@@ -116,7 +116,7 @@ static int smbios_write_type1(ulong *current, int handle)
 	t->manufacturer = smbios_add_string(t->eos, CONFIG_SMBIOS_MANUFACTURER);
 	t->product_name = smbios_add_string(t->eos, CONFIG_SMBIOS_PRODUCT_NAME);
 	if (serial_str) {
-		strncpy((char*)t->uuid, serial_str, sizeof(t->uuid));
+		strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
 		t->serial_number = smbios_add_string(t->eos, serial_str);
 	}