1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 01:09:47 +01:00

Merge pull request #21050 from maribu/cpu/cortexm_common/iwyu-clean

cpu/cortexm_common: Make cpu.h IWYU clean
This commit is contained in:
Marian Buschsieweke 2024-11-27 11:11:52 +00:00 committed by GitHub
commit 9fd4b915c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 17 additions and 13 deletions

View File

@ -30,12 +30,10 @@
#ifndef CPU_H
#define CPU_H
#include <stdio.h>
#include "irq.h"
#include "sched.h"
#include "thread.h"
#include "cpu_conf.h"
#include "cpu_conf.h" /* IWYU pragma: export */
#ifdef __cplusplus
extern "C" {

View File

@ -24,9 +24,7 @@
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <string.h>
#include "log.h"
#include "irq.h"
#include "periph/gpio_ll.h"
@ -39,8 +37,9 @@
#include "esp_idf_api/gpio.h"
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -28,8 +28,9 @@
#include "debug.h"
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -37,8 +37,9 @@
#include "periph_conf.h"
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -45,8 +45,9 @@
#include "periph/gpio_ll.h"
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -34,8 +34,9 @@
#include "periph/gpio_ll.h"
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -6,8 +6,6 @@
* directory for more details.
*/
#include <stdio.h>
#include "periph/gpio_ll.h"
/* Optimizing for low stack usage by not using printf(), which on newlib is
@ -19,8 +17,9 @@
* printf().
*/
#ifdef MODULE_FMT
#include "fmt.h"
# include "fmt.h"
#else
# include <stdio.h>
static inline void print_str(const char *str)
{
fputs(str, stdout);

View File

@ -9,6 +9,8 @@
#include "board.h"
#include "periph/pio.h"
#include <stdio.h>
/* see blink.c */
pio_program_t pio_blink_export_program(void);

View File

@ -22,6 +22,8 @@
#ifndef OPENWSN_LOG_H
#define OPENWSN_LOG_H
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif