aboutsummaryrefslogtreecommitdiff
path: root/include/sata.h
blob: 8414e77e42bae3715ad53a2f89848dfc3c4a3377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __SATA_H__
#define __SATA_H__
#include <part.h>

int sata_probe(int devnum);
int sata_remove(int devnum);

/*
 * Remove existing AHCI SATA device uclass and all of its children,
 * if any, and probe it again.
 */
int sata_rescan(bool verbose);

#endif