vendorcode/siemens: Fix typo in hwilib
The parameter shall be FANStartSpeed instead of FANStartpeed. Change-Id: I977da687ba8d9d0bad4c184cd0945ecaa52286ad Signed-off-by: Werner Zeh <werner.zeh@siemens.com> Reviewed-on: https://review.coreboot.org/20788 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
4a51ea8470
commit
909536a666
|
@ -349,7 +349,7 @@ static const struct param_info params[] = {
|
||||||
[FANMaxSpeed] = {
|
[FANMaxSpeed] = {
|
||||||
.pos[0] = {.blk_type = BLK_XIB, .offset = 0x40, .len = 2},
|
.pos[0] = {.blk_type = BLK_XIB, .offset = 0x40, .len = 2},
|
||||||
.get_field = hwilib_read_bytes },
|
.get_field = hwilib_read_bytes },
|
||||||
[FANStartpeed] = {
|
[FANStartSpeed] = {
|
||||||
.pos[0] = {.blk_type = BLK_XIB, .offset = 0x42, .len = 2},
|
.pos[0] = {.blk_type = BLK_XIB, .offset = 0x42, .len = 2},
|
||||||
.get_field = hwilib_read_bytes },
|
.get_field = hwilib_read_bytes },
|
||||||
[FANSensorDelay] = {
|
[FANSensorDelay] = {
|
||||||
|
|
|
@ -64,7 +64,7 @@ typedef enum {
|
||||||
FANHystThreshold,
|
FANHystThreshold,
|
||||||
FANHystCtrl,
|
FANHystCtrl,
|
||||||
FANMaxSpeed,
|
FANMaxSpeed,
|
||||||
FANStartpeed,
|
FANStartSpeed,
|
||||||
FANSensorDelay,
|
FANSensorDelay,
|
||||||
FANSensorNum,
|
FANSensorNum,
|
||||||
FANSensorSelect,
|
FANSensorSelect,
|
||||||
|
|
Loading…
Reference in New Issue