/* | |
* Copyright (c) 2015 Google, Inc | |
* Written by Simon Glass <sjg@chromium.org> | |
* Copyright (c) 2016 Xilinx, Inc | |
* Written by Michal Simek | |
* | |
* Based on ahci-uclass.c | |
* | |
* SPDX-License-Identifier: GPL-2.0+ | |
*/ | |
#include <common.h> | |
#include <dm.h> | |
#include <scsi.h> | |
UCLASS_DRIVER(scsi) = { | |
.id = UCLASS_SCSI, | |
.name = "scsi", | |
.per_device_platdata_auto_alloc_size = sizeof(struct scsi_platdata), | |
}; |