mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-06 23:36:59 +02:00
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 <trini@konsulko.com>
16 lines
264 B
C
16 lines
264 B
C
#ifndef __SATA_H__
|
|
#define __SATA_H__
|
|
|
|
#include <stdbool.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
|