]> Git Repo - J-u-boot.git/blob - drivers/ata/sata_sandbox.c
Dockerfile: build swtpm
[J-u-boot.git] / drivers / ata / sata_sandbox.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2015 Google, Inc
4  * Written by Simon Glass <[email protected]>
5  */
6
7 #include <common.h>
8 #include <blk.h>
9
10 int init_sata(int dev)
11 {
12         return 0;
13 }
14
15 int reset_sata(int dev)
16 {
17         return 0;
18 }
19
20 int scan_sata(int dev)
21 {
22         return 0;
23 }
24
25 ulong sata_read(int dev, ulong blknr, lbaint_t blkcnt, void *buffer)
26 {
27         return 0;
28 }
29
30 ulong sata_write(int dev, ulong blknr, lbaint_t blkcnt, const void *buffer)
31 {
32         return 0;
33 }
This page took 0.027619 seconds and 4 git commands to generate.