Attention is currently required from: Thomas Heijligen. Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/57889 )
Change subject: ch341a_spi: replace active kernel driver detaching by automatic one ......................................................................
Patch Set 4: Code-Review+1
(1 comment)
File ch341a_spi.c:
https://review.coreboot.org/c/flashrom/+/57889/comment/647804dc_23668dce PS4, Line 452: \ This escapes the newline, but you still got the tabs in the string ^^
You can just end the string literal here and continue it later, as C will concatenate the literals, i.e. "a" "b" "cde" is the same thing as "abcde". So it could look like this:
msg_pwarn("Platform does not support detaching of USB kernel drivers.\n" "If an unsupported driver is active, the claiming of the interface may fail.\n");
NB. If my English isn't failing, I think you can drop the "the" in "the claiming".