hwmon: (w83l785ts) Don't ask the user to report failures

There's nothing we can do about read errors on the W83L785TS-S, so
don't ask the user to report them.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
This commit is contained in:
Jean Delvare
2008-02-12 11:17:26 +01:00
committed by Mark M. Hoffman
parent 4b119e21d0
commit 4040c415f5
2 changed files with 4 additions and 3 deletions

View File

@ -301,8 +301,8 @@ static u8 w83l785ts_read_value(struct i2c_client *client, u8 reg, u8 defval)
msleep(i);
}
dev_err(&client->dev, "Couldn't read value from register 0x%02x. "
"Please report.\n", reg);
dev_err(&client->dev, "Couldn't read value from register 0x%02x.\n",
reg);
return defval;
}