Harshit Sharma has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/41280 )
Change subject: security/tpm/tspi/crtm.c: Fix handling of white space delimited list ......................................................................
Patch Set 8:
(1 comment)
https://review.coreboot.org/c/coreboot/+/41280/6/src/security/tpm/tspi/crtm.... File src/security/tpm/tspi/crtm.c:
https://review.coreboot.org/c/coreboot/+/41280/6/src/security/tpm/tspi/crtm.... PS6, Line 102: if (!strcmp(whitelist, name)) : return true; : : return false;
Same as `return !strcmp(whitelist, name);`.
Done