uboot/drivers/ufs/ufs-uclass.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0
   2/**
   3 * ufs-uclass.c - Universal Flash Subsystem (UFS) Uclass driver
   4 *
   5 * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com
   6 */
   7
   8#define LOG_CATEGORY UCLASS_UFS
   9
  10#include <common.h>
  11#include "ufs.h"
  12#include <dm.h>
  13
  14UCLASS_DRIVER(ufs) = {
  15        .id     = UCLASS_UFS,
  16        .name   = "ufs",
  17        .per_device_auto        = sizeof(struct ufs_hba),
  18};
  19