]> Git Repo - J-u-boot.git/blob - drivers/ufs/ufs-uclass.c
Restore patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"
[J-u-boot.git] / drivers / ufs / ufs-uclass.c
1 // SPDX-License-Identifier: GPL-2.0
2 /**
3  * ufs-uclass.c - Universal Flash Storage (UFS) Uclass driver
4  *
5  * Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com
6  */
7
8 #define LOG_CATEGORY UCLASS_UFS
9
10 #include "ufs.h"
11 #include <dm.h>
12
13 UCLASS_DRIVER(ufs) = {
14         .id     = UCLASS_UFS,
15         .name   = "ufs",
16         .per_device_auto        = sizeof(struct ufs_hba),
17 };
This page took 0.02622 seconds and 4 git commands to generate.