diff options
Diffstat (limited to 'src/mainboard/siemens')
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/cmos.layout | 2 | ||||
-rw-r--r-- | src/mainboard/siemens/sitemp_g1p1/mainboard.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mainboard/siemens/sitemp_g1p1/cmos.layout b/src/mainboard/siemens/sitemp_g1p1/cmos.layout index 18c0a6f51e..acaa674572 100644 --- a/src/mainboard/siemens/sitemp_g1p1/cmos.layout +++ b/src/mainboard/siemens/sitemp_g1p1/cmos.layout @@ -132,7 +132,7 @@ enumerations # CPU/Chassis FAN Control: polarity 13 0 Active_high 13 1 Active_low -# Temperature °C +# Temperature °C 14 0 30 14 1 35 14 2 40 diff --git a/src/mainboard/siemens/sitemp_g1p1/mainboard.c b/src/mainboard/siemens/sitemp_g1p1/mainboard.c index 606e68c05b..810f7e01fd 100644 --- a/src/mainboard/siemens/sitemp_g1p1/mainboard.c +++ b/src/mainboard/siemens/sitemp_g1p1/mainboard.c @@ -362,16 +362,16 @@ static const char * adt7475_detect( void ) { const struct fan_control cpu_fan_control_defaults = { .enable = 0, // disable by default .polarity = 0, // high by default - .t_min = 3, // default = 45°C - .t_max = 7, // 65°C + .t_min = 3, // default = 45°C + .t_max = 7, // 65°C .pwm_min = 1, // default dutycycle = 30% .pwm_max = 13, // 90% }; const struct fan_control case_fan_control_defaults = { .enable = 0, // disable by default .polarity = 0, // high by default - .t_min = 2, // default = 40°C - .t_max = 8, // 70°C + .t_min = 2, // default = 40°C + .t_max = 8, // 70°C .pwm_min = 0, // default dutycycle = 25% .pwm_max = 13, // 90% }; |