diff options
author | Joe Perches <joe@perches.com> | 2010-03-05 16:43:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-06 14:26:45 -0500 |
commit | 4cae787840ae82aa02649f45c46839b349034435 (patch) | |
tree | e67cfbcc8e385fd0eb6912449dc6ba2147d3ecef /drivers/hwmon/vt8231.c | |
parent | 4f2a9463d18517a9839401c3de6419ee1435875b (diff) |
drivers/hwmon/vt8231.c: fix continuation line formats
String constants that are continued on subsequent lines with \ will cause
spurious whitespace in the resulting output.
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Roger Lucas <vt8231@hiddenengine.co.uk>
Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/hwmon/vt8231.c')
-rw-r--r-- | drivers/hwmon/vt8231.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index d47b4c9949c2..e6078c9f0e27 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c | |||
@@ -948,8 +948,7 @@ static int __devinit vt8231_pci_probe(struct pci_dev *dev, | |||
948 | 948 | ||
949 | address = val & ~(VT8231_EXTENT - 1); | 949 | address = val & ~(VT8231_EXTENT - 1); |
950 | if (address == 0) { | 950 | if (address == 0) { |
951 | dev_err(&dev->dev, "base address not set -\ | 951 | dev_err(&dev->dev, "base address not set - upgrade BIOS or use force_addr=0xaddr\n"); |
952 | upgrade BIOS or use force_addr=0xaddr\n"); | ||
953 | return -ENODEV; | 952 | return -ENODEV; |
954 | } | 953 | } |
955 | 954 | ||