toolchain: use consistent code style for C code
authorPeter Korsgaard <peter@korsgaard.com>
Sat, 8 Feb 2020 19:44:00 +0000 (20:44 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sat, 8 Feb 2020 21:10:06 +0000 (22:10 +0100)
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>
support/scripts/check-kernel-headers.sh
toolchain/toolchain-wrapper.c

index d1864cb05ede2fbe1d67c5430767b7ccfa3622b3..841df98b643982fa2af48cd012bf7386b1b5d279 100755 (executable)
@@ -53,8 +53,7 @@ int main(int argc __attribute__((unused)),
     int l = LINUX_VERSION_CODE & ~0xFF;
     int h = KERNEL_VERSION(${HDR_M},${HDR_m},0);
 
-    if(l != h)
-    {
+    if (l != h) {
         printf("Incorrect selection of kernel headers: ");
         printf("expected %d.%d.x, got %d.%d.x\n", ${HDR_M}, ${HDR_m},
                ((LINUX_VERSION_CODE>>16) & 0xFF),
index b7705a4cbf455adfd7a22fbfa2e9d3b0a4fbf9dc..8cfc963ccd83553071a2fac2f082462027592bdb 100644 (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)