diff --git a/drivers/hwmon/nct6775.c b/drivers/hwmon/nct6775.c index 99cec18..a7a0b07 100644 --- a/drivers/hwmon/nct6775.c +++ b/drivers/hwmon/nct6775.c @@ -4007,6 +4007,7 @@ static int nct6775_resume(struct device *dev) struct nct6775_sio_data *sio_data = dev->platform_data; int i, j; + printk(KERN_INFO "nct6776: resuming...\n"); mutex_lock(&data->update_lock); data->bank = 0xff; /* Force initial bank selection */ @@ -4050,6 +4051,7 @@ static int nct6775_resume(struct device *dev) data->valid = false; mutex_unlock(&data->update_lock); + printk(KERN_INFO "nct6776: resume complete.\n"); return 0; }