• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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