1 /* 2 * Copyright (c) 2015 Google, Inc 3 * Written by Simon Glass <sjg@chromium.org> 4 * Copyright (c) 2016 Xilinx, Inc 5 * Written by Michal Simek 6 * 7 * Based on ahci-uclass.c 8 * 9 * SPDX-License-Identifier: GPL-2.0+ 10 */ 11 12 #include <common.h> 13 #include <dm.h> 14 #include <scsi.h> 15 16 UCLASS_DRIVER(scsi) = { 17 .id = UCLASS_SCSI, 18 .name = "scsi", 19 .per_device_platdata_auto_alloc_size = sizeof(struct scsi_platdata), 20 }; 21