Attention is currently required from: Elyes Haouas.
Maxim has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/81547?usp=email )
Change subject: util/intelp2m: Avoid adding blank line after '{' ......................................................................
Patch Set 1:
(1 comment)
File util/intelp2m/parser/parser.go:
https://review.coreboot.org/c/coreboot/+/81547/comment/0df00351_71cbb92c : PS1, Line 53: if !strings.Contains(info.function, "GPIO Community 0") { If I understand correctly, this is about removing blank line after `static const struct pad_config gpio_table[] = {`. But these changes don't fix this.
Need to remove the line break in https://github.com/coreboot/coreboot/blob/main/util/intelp2m/main.go#L24 only:
``` config.OutputGenFile.WriteString(`/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef CFG_GPIO_H #define CFG_GPIO_H
#include <gpio.h>
/* Pad configuration was generated automatically using intelp2m utility */ static const struct pad_config gpio_table[] = {`) <--- [!] ```