mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
17 lines
355 B
C
17 lines
355 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/**
|
||
|
* ufs-uclass.c - Universal Flash Subsystem (UFS) Uclass driver
|
||
|
*
|
||
|
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include "ufs.h"
|
||
|
#include <dm.h>
|
||
|
|
||
|
UCLASS_DRIVER(ufs) = {
|
||
|
.id = UCLASS_UFS,
|
||
|
.name = "ufs",
|
||
|
.per_device_auto_alloc_size = sizeof(struct ufs_hba),
|
||
|
};
|