From: Tokunori Ikegami Date: Thu, 10 Nov 2022 18:02:48 +0000 (+0900) Subject: doc: Fix sanitize command examples as character device X-Git-Tag: v2.3~38 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=d7555953673bf340b076a00f23166d070b6b7bf6;p=users%2Fsagi%2Fnvme-cli.git 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 --- 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 ------------