aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/adm1026
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/adm1026')
-rw-r--r--src/drivers/i2c/adm1026/adm1026.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/drivers/i2c/adm1026/adm1026.c b/src/drivers/i2c/adm1026/adm1026.c
index f1d61b4039..9869100823 100644
--- a/src/drivers/i2c/adm1026/adm1026.c
+++ b/src/drivers/i2c/adm1026/adm1026.c
@@ -8,7 +8,7 @@
#include <cpu/x86/msr.h>
#include "chip.h"
-#define ADM1026_DEVICE 0x2c /* 0x2e or 0x2d */
+#define ADM1026_DEVICE 0x2d /* Either 0x2c or 0x2d or 0x2e */
#define ADM1026_REG_CONFIG1 0x00
#define CFG1_MONITOR 0x01
#define CFG1_INT_ENABLE 0x02
@@ -21,6 +21,8 @@
#define ADM1026_REG_CONFIG2 0x01
#define ADM1026_REG_CONFIG3 0x07
+static void adm1026_enable_monitoring(device_t dev);
+
static void adm1026_init(device_t dev)
{
if (dev->enabled && dev->path.type == DEVICE_PATH_I2C)