u-boot/drivers/ufs/ufs-uclass.c
Bin Meng b2d01681ab ufs: Correct the UFS terminlogy
UFS stands for Universal Flash Storage, not Subsytem.

Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
2023-11-27 16:18:58 -05:00

18 lines
375 B
C

// SPDX-License-Identifier: GPL-2.0
/**
* ufs-uclass.c - Universal Flash Storage (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),
};