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/ext_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/ext_lld.c')
-rw-r--r-- | os/hal/platforms/LPC8xx/ext_lld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/platforms/LPC8xx/ext_lld.c b/os/hal/platforms/LPC8xx/ext_lld.c index b7e701c04..81e09c717 100644 --- a/os/hal/platforms/LPC8xx/ext_lld.c +++ b/os/hal/platforms/LPC8xx/ext_lld.c @@ -124,13 +124,13 @@ void ext_lld_channel_enable(EXTDriver *extp, expchannel_t channel) { /* program the IOpin for this channel */
LPC_SYSCON->PINTSEL[channel] = extp->config->channels[channel].iopin;
-
+
/* Programming edge irq enables */
if (extp->config->channels[channel].mode & EXT_CH_MODE_RISING_EDGE)
LPC_PIN_INT->SIENR = (1 << channel);
else
LPC_PIN_INT->CIENR = (1 << channel);
-
+
if (extp->config->channels[channel].mode & EXT_CH_MODE_FALLING_EDGE)
LPC_PIN_INT->SIENF = (1 << channel);
else
@@ -139,7 +139,7 @@ void ext_lld_channel_enable(EXTDriver *extp, expchannel_t channel) { LPC_PIN_INT->RISE = (1<<channel);
LPC_PIN_INT->FALL = (1<<channel);
LPC_PIN_INT->IST = (1<<channel);
-
+
ext_lld_exti_irq_enable( channel );
}
|