|
@@ -95,7 +95,6 @@ static void ltc4245_update_gpios(struct device *dev)
|
|
|
* readings as stale by setting them to -EAGAIN
|
|
|
*/
|
|
|
if (time_after(jiffies, data->last_updated + 5 * HZ)) {
|
|
|
- dev_dbg(&client->dev, "Marking GPIOs invalid\n");
|
|
|
for (i = 0; i < ARRAY_SIZE(data->gpios); i++)
|
|
|
data->gpios[i] = -EAGAIN;
|
|
|
}
|
|
@@ -141,8 +140,6 @@ static struct ltc4245_data *ltc4245_update_device(struct device *dev)
|
|
|
|
|
|
if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
|
|
|
|
|
|
- dev_dbg(&client->dev, "Starting ltc4245 update\n");
|
|
|
-
|
|
|
/* Read control registers -- 0x00 to 0x07 */
|
|
|
for (i = 0; i < ARRAY_SIZE(data->cregs); i++) {
|
|
|
val = i2c_smbus_read_byte_data(client, i);
|