diff options
Diffstat (limited to 'roms/seabios-hppa/src/hw/nvme.h')
-rw-r--r-- | roms/seabios-hppa/src/hw/nvme.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roms/seabios-hppa/src/hw/nvme.h b/roms/seabios-hppa/src/hw/nvme.h new file mode 100644 index 000000000..4dbb70ae7 --- /dev/null +++ b/roms/seabios-hppa/src/hw/nvme.h @@ -0,0 +1,17 @@ +// External interfaces for low level NVMe support +// +// Copyright 2017 Amazon.com, Inc. or its affiliates. +// +// This file may be distributed under the terms of the GNU LGPLv3 license. + +#ifndef __NVME_H +#define __NVME_H + +#include "block.h" // struct disk_op_s + +void nvme_setup(void); +int nvme_process_op(struct disk_op_s *op); + +#endif + +/* EOF */ |