Improve the readability of help messages in all tools by adding
a newline between the usage and summary sections.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
static void print_help(void)
{
printf("Usage: %s [OPTIONS]\n", get_progname());
+ printf("\n");
printf("List all GPIO chips, print their labels and number of GPIO lines.\n");
printf("\n");
printf("Options:\n");
static void print_help(void)
{
printf("Usage: %s [OPTIONS] <name>\n", get_progname());
+ printf("\n");
printf("Find a GPIO line by name. The output of this command can be used as input for gpioget/set.\n");
printf("\n");
printf("Options:\n");
{
printf("Usage: %s [OPTIONS] <chip name/number> <offset 1> <offset 2> ...\n",
get_progname());
+ printf("\n");
printf("Read line value(s) from a GPIO chip\n");
printf("\n");
printf("Options:\n");
static void print_help(void)
{
printf("Usage: %s [OPTIONS] <gpiochip1> ...\n", get_progname());
+ printf("\n");
printf("Print information about all lines of the specified GPIO chip(s) (or all gpiochips if none are specified).\n");
printf("\n");
printf("Options:\n");
{
printf("Usage: %s [OPTIONS] <chip name/number> <offset 1> <offset 2> ...\n",
get_progname());
+ printf("\n");
printf("Wait for events on GPIO lines and print them to standard output\n");
printf("\n");
printf("Options:\n");
{
printf("Usage: %s [OPTIONS] <chip name/number> <offset1>=<value1> <offset2>=<value2> ...\n",
get_progname());
+ printf("\n");
printf("Set GPIO line values of a GPIO chip and maintain the state until the process exits\n");
printf("\n");
printf("Options:\n");