2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-29 13:28:01 +00:00

Trivial fixes (typo...)

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2678 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare 2004-08-30 19:19:52 +00:00
parent 043d2bb261
commit eb8ced91c4
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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);
}