commit | 02cea1145a5ad49e400bd100b907ad763db16863 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Wed Sep 21 16:21:45 2022 +0200 |
committer | Simon Glass <sjg@chromium.org> | Sun Sep 25 13:59:38 2022 -0600 |
tree | c4c0bec672b962e0c0bd787b0dc38011066aa77b | |
parent | 5eff9d9c36e9e2b2437743d989f25376b981700a [diff] [blame] |
sandbox: scsi: Move request-handling code to scsi_emul Move this code into the emulator file so it can be used by multiple drivers. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/drivers/scsi/Makefile b/drivers/scsi/Makefile index 25194ee..d1b40c6 100644 --- a/drivers/scsi/Makefile +++ b/drivers/scsi/Makefile
@@ -17,4 +17,5 @@ ifdef CONFIG_SCSI obj-$(CONFIG_SANDBOX) += sandbox_scsi.o +obj-$(CONFIG_SANDBOX) += scsi_emul.o endif