mirror of
https://xff.cz/git/u-boot/
synced 2025-10-01 15:31:27 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commitc8ffd1356d
, reversing changes made to2ee6f3a5f7
. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
376 B
C
19 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),
|
|
};
|