diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2023-01-17 12:10:26 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-01-18 22:07:07 +0000 |
commit | e88bf30d12491b6b97401a41a36a4dcfaae8442f (patch) | |
tree | 0cb939bf0c889d5cbdc68a5a017923a21d5d2087 /src/vendorcode/siemens | |
parent | fcff39f0ea47c8c0d82e802058d2ca47c4cc7005 (diff) |
vc/siemens/hwilib: Use 3rd person singular in comment
Change-Id: I1d9d123d2a29178541ab24c70ba529f6bfa2b6c8
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72010
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/vendorcode/siemens')
-rw-r--r-- | src/vendorcode/siemens/hwilib/hwilib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vendorcode/siemens/hwilib/hwilib.c b/src/vendorcode/siemens/hwilib/hwilib.c index 1705a618c5..b6c8c6badf 100644 --- a/src/vendorcode/siemens/hwilib/hwilib.c +++ b/src/vendorcode/siemens/hwilib/hwilib.c @@ -402,7 +402,7 @@ static uint32_t hwilib_read_bytes(const struct param_info *param, uint8_t *dst, } while (i < MAX_BLOCK_NUM); /* Ensure there is a valid block available for this parameter and - * the length of the parameter do not exceed dstsize or block len. + * the length of the parameter does not exceed dstsize or block len. */ if ((!blk) || (param->pos[i].len > dstsize) || (param->pos[i].len + param->pos[i].offset > |