mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 00:49:43 +00:00
b2d01681ab
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>
18 lines
375 B
C
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),
|
|
};
|