blob: 034d14fd8da6a20644fb6f1bc918e0f8e4e4e2ce [file] [log] [blame]
Faiz Abbas7feafb02019-10-15 18:24:36 +05301// 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",
Simon Glass41575d82020-12-03 16:55:17 -070015 .per_device_auto = sizeof(struct ufs_hba),
Faiz Abbas7feafb02019-10-15 18:24:36 +053016};