diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2019-07-30 11:25:36 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2019-07-30 11:25:36 +0300 |
commit | 332019d0349ffa2f4d094515d22d0af493751aa9 (patch) | |
tree | d360dcc5b66bca6e7cc4d2dbef2e1c6a9fb04ac0 | |
parent | 626edbe2fc845803ffdd25936e21202e4f123b63 (diff) |
kmsprint: add missing --device from usage
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | utils/kmsprint.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/utils/kmsprint.cpp b/utils/kmsprint.cpp index 9f550c7..116fead 100644 --- a/utils/kmsprint.cpp +++ b/utils/kmsprint.cpp @@ -484,10 +484,11 @@ static void print_modes(Card& card) static const char* usage_str = "Usage: kmsprint [OPTIONS]\n\n" "Options:\n" - " -l, --list Print list instead of tree\n" - " -m, --modes Print modes\n" - " --xmode Print modes using X modeline\n" - " -p, --props Print properties\n" + " --device=DEVICE DEVICE is the path to DRM card to open\n" + " -l, --list Print list instead of tree\n" + " -m, --modes Print modes\n" + " --xmode Print modes using X modeline\n" + " -p, --props Print properties\n" ; static void usage() |