diff options
author | Werner Zeh <werner.zeh@siemens.com> | 2017-07-27 13:43:24 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-07-28 16:16:05 +0000 |
commit | 909536a666d9f42b4e27e8ce93251d85ef9fcb74 (patch) | |
tree | 0546263827f68d62ceeae5f8889f506045e7e4ec /src/vendorcode/siemens | |
parent | 4a51ea8470eecabe401b22142fd1bbcb263953f7 (diff) |
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>
Diffstat (limited to 'src/vendorcode/siemens')
-rw-r--r-- | src/vendorcode/siemens/hwilib/hwilib.c | 2 | ||||
-rw-r--r-- | src/vendorcode/siemens/hwilib/hwilib.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/siemens/hwilib/hwilib.c b/src/vendorcode/siemens/hwilib/hwilib.c index 08e8da98ff..0d4a7a0774 100644 --- a/src/vendorcode/siemens/hwilib/hwilib.c +++ b/src/vendorcode/siemens/hwilib/hwilib.c @@ -349,7 +349,7 @@ static const struct param_info params[] = { [FANMaxSpeed] = { .pos[0] = {.blk_type = BLK_XIB, .offset = 0x40, .len = 2}, .get_field = hwilib_read_bytes }, - [FANStartpeed] = { + [FANStartSpeed] = { .pos[0] = {.blk_type = BLK_XIB, .offset = 0x42, .len = 2}, .get_field = hwilib_read_bytes }, [FANSensorDelay] = { diff --git a/src/vendorcode/siemens/hwilib/hwilib.h b/src/vendorcode/siemens/hwilib/hwilib.h index 83fcc8fffb..9739cf3c5a 100644 --- a/src/vendorcode/siemens/hwilib/hwilib.h +++ b/src/vendorcode/siemens/hwilib/hwilib.h @@ -64,7 +64,7 @@ typedef enum { FANHystThreshold, FANHystCtrl, FANMaxSpeed, - FANStartpeed, + FANStartSpeed, FANSensorDelay, FANSensorNum, FANSensorSelect, |