From 7d3fc14c3e6f88079f44045d866b1d7cfbfb3081 Mon Sep 17 00:00:00 2001 From: Victor Arino Date: Mon, 31 Jul 2017 07:28:17 +0200 Subject: [PATCH 1/2] cpu/atmega328p: correct port inline --- cpu/atmega328p/include/periph_cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/atmega328p/include/periph_cpu.h b/cpu/atmega328p/include/periph_cpu.h index 2a7ff88f9f..c98ae58ffe 100644 --- a/cpu/atmega328p/include/periph_cpu.h +++ b/cpu/atmega328p/include/periph_cpu.h @@ -38,7 +38,7 @@ extern "C" { enum { PORT_B = 1, /**< port B */ PORT_C = 2, /**< port C */ - PORT_D = 3 /**< port D */ + PORT_D = 3 /**< port D */ }; #ifdef __cplusplus From 3ba2177b0d619f15f400ccbfb3260bfc044f8b15 Mon Sep 17 00:00:00 2001 From: Victor Arino Date: Mon, 31 Jul 2017 07:30:15 +0200 Subject: [PATCH 2/2] cpu/atmega_common: fix typo --- cpu/atmega_common/thread_arch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/atmega_common/thread_arch.c b/cpu/atmega_common/thread_arch.c index ed4d79e906..cb708749dd 100644 --- a/cpu/atmega_common/thread_arch.c +++ b/cpu/atmega_common/thread_arch.c @@ -29,7 +29,7 @@ /** - * @brief AVR_CONTEXT_SWAP_INIT intialize the context swap trigger + * @brief AVR_CONTEXT_SWAP_INIT initialize the context swap trigger * Called when threading is first started. */ #ifndef AVR_CONTEXT_SWAP_INIT