mb: Add space before closing comment block keyword

Run the command below to fix all occurrences.

    $ git grep -l 'ramstage\*/' | xargs sed -i 's,ramstage\*/,ramstage */,'

Change-Id: Ied155d325846fc0ef3e823e5708c6f74e3d7998f
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60247
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Paul Menzel 2021-12-20 08:05:12 +01:00 committed by Felix Held
parent ff01bca624
commit 6c307d7646
24 changed files with 25 additions and 25 deletions

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* GPP_A0 thru GPP_A6 come configured out of reset, do not touch */ /* GPP_A0 thru GPP_A6 come configured out of reset, do not touch */
/* A0 : ESPI_IO0 */ /* A0 : ESPI_IO0 */

View File

@ -4,7 +4,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* C18 : AP_I2C_EMR_SDA */ /* C18 : AP_I2C_EMR_SDA */
PAD_NC(GPP_C18, NONE), PAD_NC(GPP_C18, NONE),

View File

@ -4,7 +4,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN => LTE_PWR_OFF_ODL */ /* A10 : WWAN_EN => LTE_PWR_OFF_ODL */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -5,7 +5,7 @@
#include <bootstate.h> #include <bootstate.h>
#include <fw_config.h> #include <fw_config.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -7,14 +7,14 @@
#include <fw_config.h> #include <fw_config.h>
#include <ec/google/chromeec/ec.h> #include <ec/google/chromeec/ec.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config not_board6or8_gpio_table[] = { static const struct pad_config not_board6or8_gpio_table[] = {
/* C12 : AP_PEN_DET_ODL */ /* C12 : AP_PEN_DET_ODL */
PAD_CFG_GPI_GPIO_DRIVER(GPP_C12, UP_20K, DEEP), PAD_CFG_GPI_GPIO_DRIVER(GPP_C12, UP_20K, DEEP),
}; };
/* bid6: Pad configuration for board version 6 or 8 in ramstage*/ /* bid6: Pad configuration for board version 6 or 8 in ramstage */
static const struct pad_config board6or8_gpio_table[] = { static const struct pad_config board6or8_gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A11 : TOUCH_RPT_EN */ /* A11 : TOUCH_RPT_EN */

View File

@ -4,7 +4,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN => LTE_PWR_OFF_ODL */ /* A10 : WWAN_EN => LTE_PWR_OFF_ODL */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -6,7 +6,7 @@
#include <fw_config.h> #include <fw_config.h>
#include <ec/google/chromeec/ec.h> #include <ec/google/chromeec/ec.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* C12 : AP_PEN_DET_ODL has an external pull-up and hence no pad termination.*/ /* C12 : AP_PEN_DET_ODL has an external pull-up and hence no pad termination.*/
PAD_CFG_GPI_GPIO_DRIVER(GPP_C12, NONE, DEEP), PAD_CFG_GPI_GPIO_DRIVER(GPP_C12, NONE, DEEP),

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -4,7 +4,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN => LTE_PWR_OFF_ODL */ /* A10 : WWAN_EN => LTE_PWR_OFF_ODL */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A11 : TOUCH_RPT_EN */ /* A11 : TOUCH_RPT_EN */

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* A10 : WWAN_EN */ /* A10 : WWAN_EN */
PAD_CFG_GPO(GPP_A10, 1, PWROK), PAD_CFG_GPO(GPP_A10, 1, PWROK),

View File

@ -3,7 +3,7 @@
#include <baseboard/gpio.h> #include <baseboard/gpio.h>
#include <baseboard/variants.h> #include <baseboard/variants.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* E5 : AP_SUB_IO_2 */ /* E5 : AP_SUB_IO_2 */
PAD_CFG_GPO(GPP_E5, 0, PLTRST), PAD_CFG_GPO(GPP_E5, 0, PLTRST),

View File

@ -8,7 +8,7 @@
#include <gpio.h> #include <gpio.h>
#include <soc/gpio.h> #include <soc/gpio.h>
/* GPIO configuration in ramstage*/ /* GPIO configuration in ramstage */
/* Please make sure that *ALL* GPIOs are configured in this table */ /* Please make sure that *ALL* GPIOs are configured in this table */
static const struct soc_amd_gpio base_gpio_table[] = { static const struct soc_amd_gpio base_gpio_table[] = {
/* PWR_BTN_L */ /* PWR_BTN_L */

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* SSD1_PWREN CPU SSD1 */ /* SSD1_PWREN CPU SSD1 */
PAD_CFG_GPO(GPP_D14, 1, PLTRST), PAD_CFG_GPO(GPP_D14, 1, PLTRST),

View File

@ -3,7 +3,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/*BT_RF_KILL_N*/ /*BT_RF_KILL_N*/
PAD_CFG_GPO(GPP_E11, 1, DEEP), PAD_CFG_GPO(GPP_E11, 1, DEEP),

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* I2S2_SCLK */ /* I2S2_SCLK */
PAD_CFG_GPI(GPP_A7, NONE, PLTRST), PAD_CFG_GPI(GPP_A7, NONE, PLTRST),

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* I2S2_SCLK */ /* I2S2_SCLK */
PAD_CFG_GPI(GPP_A7, NONE, PLTRST), PAD_CFG_GPI(GPP_A7, NONE, PLTRST),

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* WWAN_WAKE_N */ /* WWAN_WAKE_N */

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* PCH M.2 SSD */ /* PCH M.2 SSD */
PAD_CFG_GPO(GPP_B16, 1, DEEP), PAD_CFG_GPO(GPP_B16, 1, DEEP),

View File

@ -5,7 +5,7 @@
#include <types.h> #include <types.h>
#include <vendorcode/google/chromeos/chromeos.h> #include <vendorcode/google/chromeos/chromeos.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* PCH M.2 SSD */ /* PCH M.2 SSD */
PAD_CFG_GPO(GPP_B16, 1, DEEP), PAD_CFG_GPO(GPP_B16, 1, DEEP),

View File

@ -3,7 +3,7 @@
#include <baseboard/variants.h> #include <baseboard/variants.h>
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
/* Pad configuration in ramstage*/ /* Pad configuration in ramstage */
static const struct pad_config gpio_table[] = { static const struct pad_config gpio_table[] = {
/* Community 0 - GpioGroup GPP_B */ /* Community 0 - GpioGroup GPP_B */
PAD_CFG_NF(GPP_B2, NONE, PLTRST, NF1), /* PMC_VRALERT_N */ PAD_CFG_NF(GPP_B2, NONE, PLTRST, NF1), /* PMC_VRALERT_N */