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