1 #ifndef __SATA_H__ 2 #define __SATA_H__ 3 4 #include <stdbool.h> 5 6 int sata_probe(int devnum); 7 int sata_remove(int devnum); 8 9 /* 10 * Remove existing AHCI SATA device uclass and all of its children, 11 * if any, and probe it again. 12 */ 13 int sata_rescan(bool verbose); 14 15 #endif 16