cpu/native: fix typo 'funtion' -> 'function'

This commit is contained in:
Alexandre Abadie 2020-10-02 07:57:27 +02:00
parent c458bbceca
commit 81a0566c12
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -42,7 +42,7 @@ typedef void (*native_async_read_callback_t)(int fd, void *arg);
*/ */
typedef struct { typedef struct {
pid_t child_pid; /**< PID of the interrupt listener */ 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 */ void *arg; /**< Argument ptr for the callback */
struct pollfd *fd; /**< sysfs gpio fd */ struct pollfd *fd; /**< sysfs gpio fd */
} async_read_t; } async_read_t;