Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
sven
/
m1n1
/
refs/heads/main
/
.
/
src
/
nvme.h
blob: 8989a60161f344be9e73b74f1e1b13a64ef85dde [
file
]
/* SPDX-License-Identifier: MIT */
#ifndef
NVME_H
#define
NVME_H
#include
"types.h"
bool
nvme_init
(
void
);
void
nvme_shutdown
(
void
);
bool
nvme_flush
(
u32 nsid
);
bool
nvme_read
(
u32 nsid
,
u64 lba
,
void
*
buffer
);
#endif