diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-07-29 15:15:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-29 16:12:50 -0400 |
commit | 368609c5a8bd75b77721e69726ddfd3c6a30f7d4 (patch) | |
tree | 8cff3da0479ff0e978db7f0c973bd1f5fd887b0d /drivers/hwmon | |
parent | d91e16943fdaf02bf3459059abca1032589c0663 (diff) |
[PATCH] I2C: Missing space in split strings
A few split string in i2c (and now hwmon) drivers lack a joining space,
causing them to display incorrectly. This trivial patch fixes that up.
Please apply, thanks.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/adm1026.c | 2 | ||||
-rw-r--r-- | drivers/hwmon/max1619.c | 2 | ||||
-rw-r--r-- | drivers/hwmon/pc87360.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/adm1026.c b/drivers/hwmon/adm1026.c index 3c85fe150cd7..4fa17c76eea2 100644 --- a/drivers/hwmon/adm1026.c +++ b/drivers/hwmon/adm1026.c | |||
@@ -393,7 +393,7 @@ void adm1026_init_client(struct i2c_client *client) | |||
393 | 393 | ||
394 | value = data->config3; | 394 | value = data->config3; |
395 | if (data->config3 & CFG3_GPIO16_ENABLE) { | 395 | if (data->config3 & CFG3_GPIO16_ENABLE) { |
396 | dev_dbg(&client->dev, "GPIO16 enabled. THERM" | 396 | dev_dbg(&client->dev, "GPIO16 enabled. THERM " |
397 | "pin disabled.\n"); | 397 | "pin disabled.\n"); |
398 | } else { | 398 | } else { |
399 | dev_dbg(&client->dev, "THERM pin enabled. " | 399 | dev_dbg(&client->dev, "THERM pin enabled. " |
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c index bf553dcd97d6..3c159f1d49ee 100644 --- a/drivers/hwmon/max1619.c +++ b/drivers/hwmon/max1619.c | |||
@@ -363,7 +363,7 @@ static void __exit sensors_max1619_exit(void) | |||
363 | i2c_del_driver(&max1619_driver); | 363 | i2c_del_driver(&max1619_driver); |
364 | } | 364 | } |
365 | 365 | ||
366 | MODULE_AUTHOR("Alexey Fisher <fishor@mail.ru> and" | 366 | MODULE_AUTHOR("Alexey Fisher <fishor@mail.ru> and " |
367 | "Jean Delvare <khali@linux-fr.org>"); | 367 | "Jean Delvare <khali@linux-fr.org>"); |
368 | MODULE_DESCRIPTION("MAX1619 sensor driver"); | 368 | MODULE_DESCRIPTION("MAX1619 sensor driver"); |
369 | MODULE_LICENSE("GPL"); | 369 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/hwmon/pc87360.c b/drivers/hwmon/pc87360.c index 876c68f3af31..fa4032d53b79 100644 --- a/drivers/hwmon/pc87360.c +++ b/drivers/hwmon/pc87360.c | |||
@@ -1043,7 +1043,7 @@ static void pc87360_init_client(struct i2c_client *client, int use_thermistors) | |||
1043 | if (init >= 2 && data->innr) { | 1043 | if (init >= 2 && data->innr) { |
1044 | reg = pc87360_read_value(data, LD_IN, NO_BANK, | 1044 | reg = pc87360_read_value(data, LD_IN, NO_BANK, |
1045 | PC87365_REG_IN_CONVRATE); | 1045 | PC87365_REG_IN_CONVRATE); |
1046 | dev_info(&client->dev, "VLM conversion set to" | 1046 | dev_info(&client->dev, "VLM conversion set to " |
1047 | "1s period, 160us delay\n"); | 1047 | "1s period, 160us delay\n"); |
1048 | pc87360_write_value(data, LD_IN, NO_BANK, | 1048 | pc87360_write_value(data, LD_IN, NO_BANK, |
1049 | PC87365_REG_IN_CONVRATE, | 1049 | PC87365_REG_IN_CONVRATE, |