Hello Hung-Te Lin, build bot (Jenkins), Patrick Georgi, Martin Roth, Yidi Lin,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/48560
to look at the new patch set (#5).
Change subject: checkpatch: fix parsing function name as for_each style ......................................................................
checkpatch: fix parsing function name as for_each style
The pattern xxx_for_each_xxx style intents to matches list style macro, but it also matches function declaration. It will cause alert that '{' should be on the previous line.
For example: pattern: /(.*)\b((?:if|while|for|switch|(?:[a-z_]+|)for_each[a-z_]+)\s*(|do\b|else\b)/)
source: static void set_vcore_voltage_for_each_freq(const struct ddr_cali *cali) {
Signed-off-by: Xi Chen xixi.chen@mediatek.com Change-Id: Iacbfefc6c9a3c8b58ba77085890bc4239dac1858 --- M util/lint/checkpatch.pl 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/48560/5