mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
e6f6f9e648
Move this uncommon header out of the common header. Signed-off-by: Simon Glass <sjg@chromium.org>
33 lines
456 B
C
33 lines
456 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <blk.h>
|
|
|
|
int init_sata(int dev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int reset_sata(int dev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int scan_sata(int dev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer)
|
|
{
|
|
return 0;
|
|
}
|