diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-10-23 10:57:38 +0000 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-10-23 10:57:38 +0000 |
commit | b668f4b43060ddad6403911987524071ec307cfd (patch) | |
tree | 7a747f04ad0637e6296ce94fc3fb4956dd7f6236 /os/hal | |
parent | 5b0e38c8282e92e4a6b88dd8e2af41ef67b56f15 (diff) | |
download | ChibiOS-b668f4b43060ddad6403911987524071ec307cfd.tar.gz ChibiOS-b668f4b43060ddad6403911987524071ec307cfd.tar.bz2 ChibiOS-b668f4b43060ddad6403911987524071ec307cfd.zip |
Small style fix
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9872 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/AVR/hal_ext_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/AVR/hal_ext_lld.c b/os/hal/ports/AVR/hal_ext_lld.c index 61582d38b..5d767df48 100644 --- a/os/hal/ports/AVR/hal_ext_lld.c +++ b/os/hal/ports/AVR/hal_ext_lld.c @@ -267,7 +267,7 @@ void ext_lld_channel_enable(EXTDriver *extp, expchannel_t channel) { #if AVR_EXT_USE_INT2 || defined(__DOXYGEN__)
if (channel == INT2) {
EIMSK |= 1 << INT2;
- ext_lld_set_intx_edges(channel, extp->config->channels[channel].mode);
+ ext_lld_set_intx_edges(channel, extp->config->channels[channel].mode);
}
#endif
#if AVR_EXT_USE_INT3 || defined(__DOXYGEN__)
|