mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 12:18:55 +00:00
a94a4071d4
Replace instances of http://www.ti.com with https://www.ti.com Signed-off-by: Nishanth Menon <nm@ti.com>
18 lines
378 B
C
18 lines
378 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/**
|
|
* ufs-uclass.c - Universal Flash Subsystem (UFS) Uclass driver
|
|
*
|
|
* Copyright (C) 2019 Texas Instruments Incorporated - https://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),
|
|
};
|