Stefan Reinauer has posted comments on this change. ( https://review.coreboot.org/18925 )
Change subject: chipset_enable: Add support for Intel Skylake ......................................................................
Patch Set 2:
(2 comments)
https://review.coreboot.org/#/c/18925/2/chipset_enable.c File chipset_enable.c:
PS2, Line 869: spi_dev
Not sure what the contract is here. Are we allowed to free(spi_dev) right
We do anyways, despite the if constructs below.
Line 870: if (ret_spi == ERROR_FATAL) Do we really need a goto here?
if (ret_spi != ERROR_FATAL) if (ret_bc || ret_spi) ret = ERROR_NONFATAL; else ret = 0;
?