From 81a0566c12408ade642991ac8f40124fda092ca8 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Fri, 2 Oct 2020 07:57:27 +0200 Subject: [PATCH] cpu/native: fix typo 'funtion' -> 'function' --- cpu/native/include/async_read.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/include/async_read.h b/cpu/native/include/async_read.h index d6adee979f..e180bcd476 100644 --- a/cpu/native/include/async_read.h +++ b/cpu/native/include/async_read.h @@ -42,7 +42,7 @@ typedef void (*native_async_read_callback_t)(int fd, void *arg); */ typedef struct { pid_t child_pid; /**< PID of the interrupt listener */ - native_async_read_callback_t cb; /**< Interrupt callback funtion */ + native_async_read_callback_t cb; /**< Interrupt callback function */ void *arg; /**< Argument ptr for the callback */ struct pollfd *fd; /**< sysfs gpio fd */ } async_read_t;