summaryrefslogtreecommitdiff
path: root/drivers/ufs/ufs-uclass.c
blob: ceea30c4a95c2fb48f70b58eb2375a9bffb2dba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: GPL-2.0
/**
 * ufs-uclass.c - Universal Flash Subsystem (UFS) Uclass driver
 *
 * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com
 */

#define LOG_CATEGORY UCLASS_UFS

#include <common.h>
#include "ufs.h"
#include <dm.h>

UCLASS_DRIVER(ufs) = {
	.id	= UCLASS_UFS,
	.name	= "ufs",
	.per_device_auto	= sizeof(struct ufs_hba),
};