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 <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72893
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Elyes Haouas 2023-02-08 11:00:51 +01:00
parent a02176debb
commit 9bd974135b
1 changed files with 2 additions and 2 deletions

View File

@ -187,8 +187,8 @@ static void gpi_enable_gpe(const struct pad_config *cfg,
pcr_or32(comm->port, en_reg, en_value); pcr_or32(comm->port, en_reg, en_value);
if (CONFIG(DEBUG_GPIO)) { if (CONFIG(DEBUG_GPIO)) {
printk(BIOS_DEBUG, "GPE_EN[0x%02x, %02zd]: Reg: 0x%x, Value = 0x%x \n",\ 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,\ comm->port, relative_pad_in_comm(comm, cfg->pad), en_reg,
pcr_read32(comm->port, en_reg)); pcr_read32(comm->port, en_reg));
} }
} }