mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
imx8m: soc: Remove unneeded space
Checkpatch reports the following issue: ERROR: space prohibited before that ',' (ctx:WxW) #936: FILE: arch/arm/mach-imx/imx8m/soc.c:936: + 0, 0 , 0, 0, 0, 0, &res); Remove the unneeded space. ^ Reported-by: Tom Rini <trini@konsulko.com> Signed-off-by: Fabio Estevam <festevam@gmail.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
6cc30b2208
commit
68a699e1e8
1 changed files with 1 additions and 1 deletions
|
@ -933,7 +933,7 @@ static void acquire_buildinfo(void)
|
|||
|
||||
/* Get ARM Trusted Firmware commit id */
|
||||
arm_smccc_smc(IMX_SIP_BUILDINFO, IMX_SIP_BUILDINFO_GET_COMMITHASH,
|
||||
0, 0 , 0, 0, 0, 0, &res);
|
||||
0, 0, 0, 0, 0, 0, &res);
|
||||
atf_commit = res.a0;
|
||||
if (atf_commit == 0xffffffff) {
|
||||
debug("ATF does not support build info\n");
|
||||
|
|
Loading…
Reference in a new issue