[formatting] run everything through codestyle

Almost nothing changes here except moving braces to the same line as the
function declaration. Everything else is largely whitespace changes and
a few dangling files with tab indents.

See scripts/codestyle
This commit is contained in:
Travis Geiselbrecht
2019-06-19 20:54:28 -07:00
parent 4f2d4841d8
commit d8fa82cb91
491 changed files with 6037 additions and 9035 deletions

View File

@@ -24,18 +24,16 @@
#include <lk/debug.h>
#include <lib/console.h>
static void shell_init(const struct app_descriptor *app)
{
static void shell_init(const struct app_descriptor *app) {
console_init();
}
static void shell_entry(const struct app_descriptor *app, void *args)
{
static void shell_entry(const struct app_descriptor *app, void *args) {
console_start();
}
APP_START(shell)
.init = shell_init,
.entry = shell_entry,
APP_END
.entry = shell_entry,
APP_END