From d7555953673bf340b076a00f23166d070b6b7bf6 Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Fri, 11 Nov 2022 03:02:48 +0900 Subject: [PATCH] doc: Fix sanitize command examples as character device The documentation for nvme-sanitize provides conflicting statements Specifically, the documentation says: The parameter is mandatory NVMe character device (ex: /dev/nvme0) However, in the EXAMPLES section, the syntax shown references the Block device: nvme sanitize /dev/nvme0n1 --sanact=0x01 Using the characther device is the correct device, thus update the example accordingly. Signed-off-by: Tokunori Ikegami [dwagner: added commit message] Signed-off-by: Daniel Wagner --- Documentation/nvme-sanitize.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/nvme-sanitize.txt b/Documentation/nvme-sanitize.txt index f98d0399..df76c26b 100644 --- a/Documentation/nvme-sanitize.txt +++ b/Documentation/nvme-sanitize.txt @@ -93,8 +93,8 @@ EXAMPLES * Has the program issue Sanitize Command : + ------------ -# nvme sanitize /dev/nvme0n1 -a 0x02 -# nvme sanitize /dev/nvme0n1 --sanact=0x01 +# nvme sanitize /dev/nvme0 -a 0x02 +# nvme sanitize /dev/nvme0 --sanact=0x01 ------------ -- 2.50.1