sb600spi: Request more `lspci` details

When asking the use for `lspci` output, suggest to use `sudo` and
`-xxx`. The standard registers dumped with `-x` are not very inte-
resting, and `-xxx` requires root access.

Change-Id: I7a5bc5eb425542d8109ad504cbf77d33e43459b1
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.sourcearcade.org/c/flashprog/+/311
Reviewed-by: Felix Singer <felixsinger@posteo.net>
diff --git a/sb600spi.c b/sb600spi.c
index 8918ea4..37da989 100644
--- a/sb600spi.c
+++ b/sb600spi.c
@@ -135,7 +135,7 @@
 		} else {
 			msg_pwarn("FCH device found but SMBus revision 0x%02x does not match known values.\n"
 				  "Please report this to flashprog@flashprog.org and include this\n"
-				  "log and the output of lspci -nnvx, thanks!.\n", rev);
+				  "log and the output of `sudo lspci -nnvxxx`, thanks!.\n", rev);
 		}
 	} else if (dev->device_id == 0x790e) {
 		int rev = find_smbus_dev_rev(0x1022, 0x790B);
@@ -150,14 +150,14 @@
 		} else {
 			msg_pwarn("FCH device found but SMBus revision 0x%02x does not match known values.\n"
 				  "Please report this to flashprog@flashprog.org and include this\n"
-				  "log and the output of lspci -nnvx, thanks!.\n", rev);
+				  "log and the output of `sudo lspci -nnvxxx`, thanks!.\n", rev);
 		}
 
 
 	} else
 		msg_pwarn("%s: Unknown LPC device %" PRIx16 ":%" PRIx16 ".\n"
 			  "Please report this to flashprog@flashprog.org and include this\n"
-			  "log and the output of lspci -nnvx, thanks!\n",
+			  "log and the output of `sudo lspci -nnvxxx`, thanks!\n",
 			  __func__, dev->vendor_id, dev->device_id);
 	if (amd_gen == CHIPSET_AMD_UNKNOWN) {
 		msg_perr("Could not determine chipset generation.");