projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
efi_loader: move udevice pointer into struct efi_object
[platform/kernel/u-boot.git]
/
drivers
/
nvme
/
nvme-uclass.c
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Copyright (C) 2017 NXP Semiconductors
4
* Copyright (C) 2017 Bin Meng <bmeng.cn@gmail.com>
5
*/
6
7
#define LOG_CATEGORY UCLASS_NVME
8
9
#include <common.h>
10
#include <dm.h>
11
12
UCLASS_DRIVER(nvme) = {
13
.name = "nvme",
14
.id = UCLASS_NVME,
15
};