Costmetic changes -- spacing, comments.

This commit is contained in:
Gregory Nutt
2014-10-30 16:33:40 -06:00
parent a7121f98d9
commit 3a19f48d93
3 changed files with 4 additions and 2 deletions

View File

@@ -64,7 +64,7 @@ static const char s[] = "abcdefghijklmnopqrstuvwxyz";
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* serloop_main * serialblaster_main
****************************************************************************/ ****************************************************************************/
#ifdef CONFIG_BUILD_KERNEL #ifdef CONFIG_BUILD_KERNEL

View File

@@ -66,7 +66,7 @@ static int count = 0;
****************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* serloop_main * serialrx_main
****************************************************************************/ ****************************************************************************/
#ifdef CONFIG_BUILD_KERNEL #ifdef CONFIG_BUILD_KERNEL

View File

@@ -79,6 +79,7 @@ int serloop_main(int argc, char *argv[])
{ {
ch = '.'; ch = '.';
} }
putchar(ch); putchar(ch);
} }
#else #else
@@ -96,6 +97,7 @@ int serloop_main(int argc, char *argv[])
{ {
ch = '.'; ch = '.';
} }
ret = write(1, &ch, 1); ret = write(1, &ch, 1);
} }
#endif #endif