]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/scsi/scsi-uclass.c
dm: scsi: Use the uclass platform data
[people/ms/u-boot.git] / drivers / scsi / scsi-uclass.c
CommitLineData
e8a016b5
MS
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
16static int scsi_post_probe(struct udevice *dev)
17{
18 debug("%s: device %p\n", __func__, dev);
19 scsi_low_level_init(0, dev);
20 return 0;
21}
22
23UCLASS_DRIVER(scsi) = {
24 .id = UCLASS_SCSI,
25 .name = "scsi",
26 .post_probe = scsi_post_probe,
1dc64f6c 27 .per_device_platdata_auto_alloc_size = sizeof(struct scsi_platdata),
e8a016b5 28};