xref: /OK3568_Linux_fs/u-boot/drivers/scsi/sandbox_scsi.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Copyright (C) 2015 Google, Inc
3  * Written by Simon Glass <sjg@chromium.org>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  *
7  * This file contains dummy implementations of SCSI functions requried so
8  * that CONFIG_SCSI can be enabled for sandbox.
9  */
10 
11 #include <common.h>
12 #include <scsi.h>
13 
scsi_bus_reset(struct udevice * dev)14 int scsi_bus_reset(struct udevice *dev)
15 {
16 	return 0;
17 }
18 
scsi_init(void)19 void scsi_init(void)
20 {
21 }
22 
scsi_exec(struct udevice * dev,struct scsi_cmd * pccb)23 int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
24 {
25 	return 0;
26 }
27