]> Git Repo - J-u-boot.git/blame - drivers/ufs/ufs-uclass.c
Merge branch '2020-05-06-master-imports'
[J-u-boot.git] / drivers / ufs / ufs-uclass.c
CommitLineData
7feafb0a
FA
1// SPDX-License-Identifier: GPL-2.0
2/**
3 * ufs-uclass.c - Universal Flash Subsystem (UFS) Uclass driver
4 *
5 * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com
6 */
7
8#include <common.h>
9#include "ufs.h"
10#include <dm.h>
11
12UCLASS_DRIVER(ufs) = {
13 .id = UCLASS_UFS,
14 .name = "ufs",
15 .per_device_auto_alloc_size = sizeof(struct ufs_hba),
16};
This page took 0.043989 seconds and 4 git commands to generate.