diff --git a/prog/dump/i2cset.8 b/prog/dump/i2cset.8 index f5b32506..44746c71 100644 --- a/prog/dump/i2cset.8 +++ b/prog/dump/i2cset.8 @@ -20,12 +20,12 @@ bus. .SH OPTIONS .TP -.B -v, -V +.B -V Display the version and exit. .TP .B -y -Disable interactive mode. By default, isaset will wait for a confirmation -from the user before messing with the ISA bus. When this flag is used, it +Disable interactive mode. By default, i2cset will wait for a confirmation +from the user before messing with the I2C bus. When this flag is used, it will perform the operation directly. This is mainly meant to be used in scripts. .PP diff --git a/prog/dump/i2cset.c b/prog/dump/i2cset.c index e1f72fe2..f302e559 100644 --- a/prog/dump/i2cset.c +++ b/prog/dump/i2cset.c @@ -34,9 +34,9 @@ void help(void) { fprintf(stderr, "Syntax: i2cset [-y] I2CBUS CHIP-ADDRESS DATA-ADDRESS " "VALUE [MODE]\n" - " i2cset -V\n"); - fprintf(stderr, " MODE is 'b[yte]' or 'w[ord]' (default b)\n"); - fprintf(stderr, " I2CBUS is an integer\n"); + " i2cset -V\n" + " MODE is 'b[yte]' or 'w[ord]' (default b)\n" + " I2CBUS is an integer\n"); print_i2c_busses(0); exit(1); }