diff options
author | Oded Gabbay <oded.gabbay@gmail.com> | 2020-06-09 16:14:55 +0300 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2020-07-24 20:31:35 +0300 |
commit | 3bf1c021e36e7269c71dceafec713b0181f413a9 (patch) | |
tree | b64eaefa98ac88792e9a295fdc1e08c00b95fe72 /include/uapi/misc | |
parent | 6c07bab34b07eee62cfdc4a0bcce2732986b4288 (diff) | |
download | linux-3bf1c021e36e7269c71dceafec713b0181f413a9.tar.bz2 |
uapi/habanalabs: fix some comments
MAP/UNMAP are done also for device memory.
Reviewed-by: Omer Shpigelman <oshpigelman@habana.ai>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Diffstat (limited to 'include/uapi/misc')
-rw-r--r-- | include/uapi/misc/habanalabs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/uapi/misc/habanalabs.h b/include/uapi/misc/habanalabs.h index f6267a8d7416..f218d1c62c62 100644 --- a/include/uapi/misc/habanalabs.h +++ b/include/uapi/misc/habanalabs.h @@ -530,13 +530,13 @@ union hl_wait_cs_args { struct hl_wait_cs_out out; }; -/* Opcode to alloc device memory */ +/* Opcode to allocate device memory */ #define HL_MEM_OP_ALLOC 0 /* Opcode to free previously allocated device memory */ #define HL_MEM_OP_FREE 1 -/* Opcode to map host memory */ +/* Opcode to map host and device memory */ #define HL_MEM_OP_MAP 2 -/* Opcode to unmap previously mapped host memory */ +/* Opcode to unmap previously mapped host and device memory */ #define HL_MEM_OP_UNMAP 3 /* Memory flags */ |