diff options
author | theshed <theshed@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-08 21:16:36 +0000 |
---|---|---|
committer | theshed <theshed@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-08 21:16:36 +0000 |
commit | 53c164a93bc23f84d0a31ce4ddd850b5408c1a93 (patch) | |
tree | 55722976e38aa05ed7581a133423ea43d6ab5d06 /os/hal/platforms/LPC8xx/pal_lld.c | |
parent | f2e40f1ace6b9539187bd0e2a98a50e0d863e87b (diff) | |
download | ChibiOS-53c164a93bc23f84d0a31ce4ddd850b5408c1a93.tar.gz ChibiOS-53c164a93bc23f84d0a31ce4ddd850b5408c1a93.tar.bz2 ChibiOS-53c164a93bc23f84d0a31ce4ddd850b5408c1a93.zip |
remove trailing whitespace
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5575 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/LPC8xx/pal_lld.c')
-rw-r--r-- | os/hal/platforms/LPC8xx/pal_lld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/platforms/LPC8xx/pal_lld.c b/os/hal/platforms/LPC8xx/pal_lld.c index 40b64f00d..7f290db8f 100644 --- a/os/hal/platforms/LPC8xx/pal_lld.c +++ b/os/hal/platforms/LPC8xx/pal_lld.c @@ -88,7 +88,7 @@ void _pal_lld_setgroupmode(ioportid_t port, case PAL_MODE_INPUT:
port->DIR0 &= ~mask;
break;
-
+
case PAL_MODE_UNCONNECTED:
palSetPort(port, PAL_WHOLE_PORT);
//no break
@@ -96,7 +96,7 @@ void _pal_lld_setgroupmode(ioportid_t port, port->DIR0 |= mask;
break;
}
-
+
return;
}
|