blob: ac60ae01ca72e115666784f89a39293a3de1547d [file] [log] [blame]
Simon Glass84d39cb2016-05-01 11:35:55 -06001/*
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
Simon Glass4682c8a2017-06-14 21:28:40 -060014int scsi_bus_reset(struct udevice *dev)
Simon Glass84d39cb2016-05-01 11:35:55 -060015{
Simon Glass4682c8a2017-06-14 21:28:40 -060016 return 0;
Simon Glass84d39cb2016-05-01 11:35:55 -060017}
18
19void scsi_init(void)
20{
21}
22
Simon Glass4682c8a2017-06-14 21:28:40 -060023int scsi_exec(struct udevice *dev, struct scsi_cmd *pccb)
Simon Glass84d39cb2016-05-01 11:35:55 -060024{
25 return 0;
26}