u-boot/drivers/ufs/ufs-uclass.c
Nishanth Menon a94a4071d4 tree-wide: Replace http:// link with https:// link for ti.com
Replace instances of http://www.ti.com with https://www.ti.com

Signed-off-by: Nishanth Menon <nm@ti.com>
2023-11-10 11:01:50 -05:00

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),
};