From eb8ced91c4aa41f7289879f39433e8976952cbc9 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Mon, 30 Aug 2004 19:19:52 +0000 Subject: [PATCH] Trivial fixes (typo...) git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2678 7894878c-1315-0410-8ee3-d5d059ff63e0 --- prog/dump/i2cset.8 | 6 +++--- prog/dump/i2cset.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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); }