diff options
author | Minwoo Im | 2021-01-26 01:19:24 +0100 |
---|---|---|
committer | Klaus Jensen | 2021-02-08 21:15:54 +0100 |
commit | 74cbbf3031e92c44bb138f16d3f0dc46ca2bc84c (patch) | |
tree | 58a6002a635be66d306847bb7b28de82fc09a822 /hw/block/nvme.c | |
parent | hw/block/nvme: align with existing style (diff) | |
download | qemu-74cbbf3031e92c44bb138f16d3f0dc46ca2bc84c.tar.gz qemu-74cbbf3031e92c44bb138f16d3f0dc46ca2bc84c.tar.xz qemu-74cbbf3031e92c44bb138f16d3f0dc46ca2bc84c.zip |
hw/block/nvme: fix wrong parameter name 'cross_read'
The actual parameter name is 'cross_read' rather than 'cross_zone_read'.
Signed-off-by: Minwoo Im <minwoo.im.dev@gmail.com>
Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
Diffstat (limited to 'hw/block/nvme.c')
-rw-r--r-- | hw/block/nvme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/block/nvme.c b/hw/block/nvme.c index 2335739bdb..e562d7467b 100644 --- a/hw/block/nvme.c +++ b/hw/block/nvme.c @@ -81,7 +81,7 @@ * The default value means there is no limit to the number of * concurrently open zones. * - * zoned.cross_zone_read=<enable RAZB, default: false> + * zoned.cross_read=<enable RAZB, default: false> * Setting this property to true enables Read Across Zone Boundaries. */ |