diff options
| author | Tom Rini <[email protected]> | 2025-07-08 13:11:19 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-08 13:11:19 -0600 |
| commit | 3833600dbaa2d7008063f3127abf21be8f0fe6cd (patch) | |
| tree | 954a7a84d8ed448e0027735ced5279a6ce94ddb1 /include | |
| parent | 9be6c5f96758c144ca4ed6bba503ad55cf7d3708 (diff) | |
| parent | e3574b27140973868319a61aa39633fee29d3a7c (diff) | |
Merge patch series "include/ndisc.h: Audit include list"
This series from myself largely completes an audit of extraneous include
directives in 'include/*.h' and does not go in to other directories.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/ndisc.h | 2 | ||||
| -rw-r--r-- | include/part.h | 1 | ||||
| -rw-r--r-- | include/sata.h | 3 | ||||
| -rw-r--r-- | include/spl_gpio.h | 2 | ||||
| -rw-r--r-- | include/vsc9953.h | 2 |
5 files changed, 3 insertions, 7 deletions
diff --git a/include/ndisc.h b/include/ndisc.h index d0fe3acca4a..7d9e58aa1c2 100644 --- a/include/ndisc.h +++ b/include/ndisc.h @@ -10,8 +10,6 @@ #ifndef __NDISC_H__ #define __NDISC_H__ -#include <ndisc.h> - /* struct nd_msg - ICMPv6 Neighbour Discovery message format */ struct nd_msg { struct icmp6hdr icmph; diff --git a/include/part.h b/include/part.h index b3a3362b2af..b772fb34c8a 100644 --- a/include/part.h +++ b/include/part.h @@ -8,7 +8,6 @@ #include <blk.h> #include <u-boot/uuid.h> -#include <linker_lists.h> #include <linux/errno.h> #include <linux/list.h> diff --git a/include/sata.h b/include/sata.h index 8414e77e42b..868e89464f0 100644 --- a/include/sata.h +++ b/include/sata.h @@ -1,6 +1,7 @@ #ifndef __SATA_H__ #define __SATA_H__ -#include <part.h> + +#include <stdbool.h> int sata_probe(int devnum); int sata_remove(int devnum); diff --git a/include/spl_gpio.h b/include/spl_gpio.h index b33261a6485..a8aed4d77b9 100644 --- a/include/spl_gpio.h +++ b/include/spl_gpio.h @@ -9,7 +9,7 @@ #ifndef __SPL_GPIO_H #define __SPL_GPIO_H -#include <asm/gpio.h> +#include <linux/types.h> /* * The functions listed here should be implemented in the SoC GPIO driver. diff --git a/include/vsc9953.h b/include/vsc9953.h index fd52c93044b..1a1455af4f9 100644 --- a/include/vsc9953.h +++ b/include/vsc9953.h @@ -8,8 +8,6 @@ #ifndef _VSC9953_H_ #define _VSC9953_H_ -#include <config.h> -#include <miiphy.h> #include <asm/types.h> #include <linux/bitops.h> |
