blob: 61abf743cc1f3bb758f3668833b2b7093aa04211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// SPDX-License-Identifier: BSD-3-Clause
/*
* Libpayload NVMe device driver
* Copyright (C) 2019 secunet Security Networks AG
*/
#ifndef _STORAGE_NVME_H
#define _STORAGE_NVME_H
#include "storage.h"
void nvme_initialize(struct pci_dev *dev);
#endif /* _STORAGE_NVME_H */
|