Skip to content

Commit

Permalink
Merge pull request #21050 from maribu/cpu/cortexm_common/iwyu-clean
Browse files Browse the repository at this point in the history
cpu/cortexm_common: Make cpu.h IWYU clean
  • Loading branch information
maribu authored Nov 27, 2024
2 parents 6f3f425 + faa3727 commit 9fd4b91
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 13 deletions.
4 changes: 1 addition & 3 deletions cpu/cortexm_common/include/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
5 changes: 2 additions & 3 deletions cpu/esp32/periph/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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);
Expand Down
3 changes: 2 additions & 1 deletion cpu/gd32v/periph/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 2 additions & 1 deletion cpu/nrf5x_common/periph/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 2 additions & 1 deletion cpu/sam0_common/periph/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
3 changes: 2 additions & 1 deletion cpu/stm32/periph/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
5 changes: 2 additions & 3 deletions drivers/periph_common/gpio_ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
Expand Down
2 changes: 2 additions & 0 deletions examples/pio_blink/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 2 additions & 0 deletions pkg/openwsn/include/openwsn_log.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#ifndef OPENWSN_LOG_H
#define OPENWSN_LOG_H

#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif
Expand Down

0 comments on commit 9fd4b91

Please sign in to comment.