diff options
| author | Sascha Laue <Sascha.Laue@gmx.biz> | 2008-04-30 15:23:38 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-04-30 22:25:15 +0200 | 
| commit | 58b575e575c25fdf8c88141e145db201f3092149 (patch) | |
| tree | bb93169ca83b61d12d24f4c637e67bcb9c559ea9 | |
| parent | e7419b243a373de4ee042f7d4f45f66de787240d (diff) | |
| download | olio-uboot-2014.01-58b575e575c25fdf8c88141e145db201f3092149.tar.xz olio-uboot-2014.01-58b575e575c25fdf8c88141e145db201f3092149.zip | |
lwmon5: fix offset error in sysmon0 POST
Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
Signed-off-by: Wolfgang Denk <wd@denx.de>
| -rw-r--r-- | post/board/lwmon5/sysmon.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/post/board/lwmon5/sysmon.c b/post/board/lwmon5/sysmon.c index 23cb70926..e9c962490 100644 --- a/post/board/lwmon5/sysmon.c +++ b/post/board/lwmon5/sysmon.c @@ -133,16 +133,16 @@ static sysmon_table_t sysmon_table[] =  	{  	"+ 5 V", "V", &sysmon_dspic, NULL, NULL,  	100, 1000, -0x8000, 0x7FFF, 0xFFFF, -	VOLTAGE_5V_MIN, VOLTAGE_5V_MAX, 0, -	VOLTAGE_5V_MIN, VOLTAGE_5V_MAX, 0, +	0x8000 + VOLTAGE_5V_MIN, 0x8000 + VOLTAGE_5V_MAX, 0, +	0x8000 + VOLTAGE_5V_MIN, 0x8000 + VOLTAGE_5V_MAX, 0,  	REG_VOLTAGE_5V,  	},  	{  	"+ 5 V standby", "V", &sysmon_dspic, NULL, NULL,  	100, 1000, -0x8000, 0x7FFF, 0xFFFF, -	VOLTAGE_5V_STANDBY_MIN, VOLTAGE_5V_STANDBY_MAX, 0, -	VOLTAGE_5V_STANDBY_MIN, VOLTAGE_5V_STANDBY_MAX, 0, +	0x8000 + VOLTAGE_5V_STANDBY_MIN, 0x8000 + VOLTAGE_5V_STANDBY_MAX, 0, +	0x8000 + VOLTAGE_5V_STANDBY_MIN, 0x8000 + VOLTAGE_5V_STANDBY_MAX, 0,  	REG_VOLTAGE_5V_STANDBY,  	},  }; |