u-boot/drivers/ufs/ufs-uclass.c
Tom Rini d6e052c615 Merge patch series "ufs: Add a PCI UFS controller support"
To quote the author:

This adds a PCI UFS controller support and enables the support on
QEMU RISC-V for testing.

Requiring QEMU v8.2+.
2023-11-27 16:19:09 -05:00

18 lines
376 B
C

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