blob: d943d1f9daf1e9a8b13b852a075785b785c5a158 [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
14void scsi_bus_reset(void)
15{
16}
17
18void scsi_init(void)
19{
20}
21
Simon Glassb9560ad2017-06-14 21:28:30 -060022int scsi_exec(struct scsi_cmd *pccb)
Simon Glass84d39cb2016-05-01 11:35:55 -060023{
24 return 0;
25}