Run clang-format on the entire repo

This patch clang-formats the entire repo. Third-party code is
excluded.

I needed to fix up the .clang-format file so that all the header
includes are ordered properly. I could have sworn that it used to work
without the extra modification, but I guess not.

Signed-off-by: Philipp Schrader <philipp.schrader@gmail.com>
Change-Id: I64bb9f2c795401393f9dfe2fefc4f04cb36b52f6
diff --git a/y2022/localizer/kernel/adis16505.c b/y2022/localizer/kernel/adis16505.c
index 963ca4a..f0eb6ae 100644
--- a/y2022/localizer/kernel/adis16505.c
+++ b/y2022/localizer/kernel/adis16505.c
@@ -8,14 +8,12 @@
 #include <linux/kernel.h> /* Needed for pr_info() */
 #include <linux/kfifo.h>
 #include <linux/module.h> /* Needed by all modules */
-#include <linux/poll.h>
-
-#include <linux/of_gpio.h>
-#include <linux/spi/spi.h>
-#include <linux/of_address.h>
 #include <linux/of.h>
+#include <linux/of_address.h>
+#include <linux/of_gpio.h>
 #include <linux/of_platform.h>
-
+#include <linux/poll.h>
+#include <linux/spi/spi.h>
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("frc971");
@@ -115,10 +113,10 @@
         return -EAGAIN;
       }
 
-      err = wait_event_interruptible(ts->wq,
-                                     (spin_lock(&ts->fifo_read_lock),
-                                      empty = !kfifo_is_empty(&ts->fifo),
-                                      spin_unlock(&ts->fifo_read_lock), empty));
+      err = wait_event_interruptible(
+          ts->wq,
+          (spin_lock(&ts->fifo_read_lock), empty = !kfifo_is_empty(&ts->fifo),
+           spin_unlock(&ts->fifo_read_lock), empty));
       if (err != 0) {
         return err;
       }
@@ -330,4 +328,4 @@
     .remove = adis16505_remove,
 };
 
-module_spi_driver(adis16505_driver); 
+module_spi_driver(adis16505_driver);