Add tabulation.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10478 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Theodore Ateba 2017-08-24 23:01:41 +00:00
parent 4c84325d5e
commit 6904b7392c
1 changed files with 3 additions and 3 deletions

View File

@ -264,13 +264,13 @@ void ext_lld_channel_enable(EXTDriver *extp, expchannel_t channel) {
#endif
#if AVR_EXT_USE_INT2 || defined(__DOXYGEN__)
if (channel == INT2) {
EIMSK |= 1 << INT2;
ext_lld_set_intx_edges(channel, extp->config->channels[channel].mode);
EIMSK |= (1 << INT2);
ext_lld_set_intx_edges(channel, extp->config->channels[channel].mode);
}
#endif
#if AVR_EXT_USE_INT3 || defined(__DOXYGEN__)
if (channel == INT3) {
EIMSK |= 1 << INT3;
EIMSK |= (1 << INT3);
ext_lld_set_intx_edges(channel, extp->config->channels[channel].mode);
}
#endif