summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-06-28 16:43:50 -0600
committerTom Rini <[email protected]>2025-07-08 13:11:12 -0600
commit7788df3e926186093bdd7710fea2062899cae9c1 (patch)
treebc0d4df555dc6efe2775935b0b14ce4bd1303103 /include
parent643607b3f8ef8d9804f55f110832e17fc1f6c72d (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.h3
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);