toolchain: use consistent code style for C code

Most, but not all our C code follows the Linux kernel code style (as
documented in Documentation/process/coding-style.rst).  Adjust the few
places doing differently:

- Braces:
  ..but the preferred way, as shown to us by the prophets Kernighan
  and Ritchie, is to put the opening brace last on the line

- Spaces after keywords:
  Use a space after (most) keywords

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Peter Korsgaard
2020-02-08 20:44:00 +01:00
committed by Yann E. MORIN
parent 9aebf953fb
commit 5fd8dd203a
2 changed files with 2 additions and 3 deletions

View File

@@ -434,7 +434,7 @@ int main(int argc, char **argv)
/* Both args below can be set at compile/link time
* and are ignored correctly when not used
*/
if(i == argc)
if (i == argc)
*cur++ = "-fPIE";
if (!found_shared)