239a92abba6a0034419594cd441e66d598a8940c
[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 };