From 9bd974135b6302c723db5d51b0d0efa3eee7dc19 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Wed, 8 Feb 2023 11:00:51 +0100 Subject: [PATCH] soc/intel/common/block/gpio/gpio.c: Remove unnecessary line continuation Also remove unnecessary whitespace before "\n" Change-Id: Ia2c8fcb82658ed3e247759535d3112270d46e65d Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/72893 Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai Reviewed-by: Felix Singer --- src/soc/intel/common/block/gpio/gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/common/block/gpio/gpio.c b/src/soc/intel/common/block/gpio/gpio.c index 015b5da95f..facc1fe5a2 100644 --- a/src/soc/intel/common/block/gpio/gpio.c +++ b/src/soc/intel/common/block/gpio/gpio.c @@ -187,8 +187,8 @@ static void gpi_enable_gpe(const struct pad_config *cfg, pcr_or32(comm->port, en_reg, en_value); if (CONFIG(DEBUG_GPIO)) { - printk(BIOS_DEBUG, "GPE_EN[0x%02x, %02zd]: Reg: 0x%x, Value = 0x%x \n",\ - comm->port, relative_pad_in_comm(comm, cfg->pad), en_reg,\ + printk(BIOS_DEBUG, "GPE_EN[0x%02x, %02zd]: Reg: 0x%x, Value = 0x%x\n", + comm->port, relative_pad_in_comm(comm, cfg->pad), en_reg, pcr_read32(comm->port, en_reg)); } }