summaryrefslogtreecommitdiff
path: root/apps/system/ramtron
diff options
context:
space:
mode:
Diffstat (limited to 'apps/system/ramtron')
-rw-r--r--apps/system/ramtron/Makefile2
-rw-r--r--apps/system/ramtron/ramtron.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/system/ramtron/Makefile b/apps/system/ramtron/Makefile
index b47781095..4ac47431a 100644
--- a/apps/system/ramtron/Makefile
+++ b/apps/system/ramtron/Makefile
@@ -76,7 +76,7 @@ ROOTDEPPATH = --dep-path .
# Common build
-VPATH =
+VPATH =
all: .built
.PHONY: context depend clean distclean
diff --git a/apps/system/ramtron/ramtron.c b/apps/system/ramtron/ramtron.c
index 2e1632cf1..f769a7ea7 100644
--- a/apps/system/ramtron/ramtron.c
+++ b/apps/system/ramtron/ramtron.c
@@ -56,7 +56,7 @@ int ramtron_start(int spino)
int retval;
/* Get the SPI port */
-
+
spi = up_spiinitialize(spino);
if (!spi)
{
@@ -86,17 +86,17 @@ int ramtron_start(int spino)
int ramtron_main(int argc, char *argv[])
{
int spino;
-
+
if (argc == 3)
{
spino = atoi(argv[2]);
-
+
if (!strcmp(argv[1], "start"))
{
return ramtron_start(spino);
}
}
-
+
/* todo: write protect */
printf("%s: <start> <spino>\n", argv[0]);