xref: /aosp_15_r20/external/coreboot/payloads/libpayload/include/storage/nvme.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 // SPDX-License-Identifier: BSD-3-Clause
2 /*
3  * Libpayload NVMe device driver
4  * Copyright (C) 2019 secunet Security Networks AG
5  */
6 
7 #ifndef _STORAGE_NVME_H
8 #define _STORAGE_NVME_H
9 
10 #include "storage.h"
11 
12 void nvme_initialize(struct pci_dev *dev);
13 
14 #endif /* _STORAGE_NVME_H */
15