diff options
| author | Tom Rini <[email protected]> | 2025-06-28 16:43:50 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-08 13:11:12 -0600 |
| commit | 7788df3e926186093bdd7710fea2062899cae9c1 (patch) | |
| tree | bc0d4df555dc6efe2775935b0b14ce4bd1303103 /include | |
| parent | 643607b3f8ef8d9804f55f110832e17fc1f6c72d (diff) | |
include/sata.h: Audit include list
This file does not need <part.h> so remove it. This file does however
need <stdbool.h> so add that in.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sata.h | 3 |
1 files changed, 2 insertions, 1 deletions
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); |
