From 2b50369ad27927c6b02213a4e19de90ba619147f Mon Sep 17 00:00:00 2001 From: Tau Date: Wed, 27 Mar 2019 18:46:00 -0400 Subject: [PATCH] platform/hwmon.c: Suppress logging We don't really care exactly when the CPU temp gets checked. --- platform/hwmon.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/platform/hwmon.c b/platform/hwmon.c index fe7aeb6..12183a5 100644 --- a/platform/hwmon.c +++ b/platform/hwmon.c @@ -84,7 +84,5 @@ static HRESULT hwmon_ioctl_read_cpu_temp(struct irp *irp) /* Assuming this is Celsius. It also seems to be biased by -23 (based on the caller code) despite being a 32-bit int. */ - dprintf("Hwmon: Read CPU temperature\n"); - return iobuf_write_le32(&irp->read, 52); }