diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-01-17 19:26:28 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-01-17 19:26:28 -0800 |
| commit | 42926c61596b017ebcf469ca5a7b6748b86df9b3 (patch) | |
| tree | 0e47be23589164dbd05dbed165f6cb5b72d01250 | |
| parent | 179413aec25e00d9b2f8d953d3390da920b99b71 (diff) | |
atmel-samd: Fix whitespace.
| -rw-r--r-- | atmel-samd/mphalport.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/atmel-samd/mphalport.c b/atmel-samd/mphalport.c index d65c89a63..a47063994 100644 --- a/atmel-samd/mphalport.c +++ b/atmel-samd/mphalport.c @@ -248,13 +248,13 @@ void mp_hal_delay_us(mp_uint_t delay) { static irqflags_t irq_flags; void mp_hal_disable_all_interrupts(void) { - // Disable all interrupt sources for timing critical sections. - // Disable ASF-based interrupts. - irq_flags = cpu_irq_save(); + // Disable all interrupt sources for timing critical sections. + // Disable ASF-based interrupts. + irq_flags = cpu_irq_save(); } void mp_hal_enable_all_interrupts(void) { - // Enable all interrupt sources after timing critical sections. - // Restore ASF-based interrupts. - cpu_irq_restore(irq_flags); + // Enable all interrupt sources after timing critical sections. + // Restore ASF-based interrupts. + cpu_irq_restore(irq_flags); } |
