projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6944d4
)
vfio: remove an extra semicolon
author
foryun.ma
<foryun.ma@jaguarmicro.com>
Fri, 10 May 2024 00:37:35 +0000
(14:37 +1400)
committer
Alex Williamson
<alex.williamson@redhat.com>
Fri, 10 May 2024 17:15:21 +0000
(11:15 -0600)
remove an extra semicolon from the example code
Signed-off-by: foryun.ma <foryun.ma@jaguarmicro.com>
Link:
https://lore.kernel.org/r/20240510003735.2766-1-foryun.ma@jaguarmicro.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Documentation/driver-api/vfio.rst
patch
|
blob
|
history
diff --git
a/Documentation/driver-api/vfio.rst
b/Documentation/driver-api/vfio.rst
index 633d11c7fa7100fc4ec7e5a15cabced8b33cff98..2a21a42c938682d69734b30cff8da12e165c3507 100644
(file)
--- a/
Documentation/driver-api/vfio.rst
+++ b/
Documentation/driver-api/vfio.rst
@@
-364,7
+364,7
@@
IOMMUFD IOAS/HWPT to enable userspace DMA::
MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
map.iova = 0; /* 1MB starting at 0x0 from device view */
map.length = 1024 * 1024;
- map.ioas_id = alloc_data.out_ioas_id;
;
+ map.ioas_id = alloc_data.out_ioas_id;
ioctl(iommufd, IOMMU_IOAS_MAP, &map);