diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-02-08 11:00:51 +0100 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-02-09 10:03:42 +0000 |
commit | 9bd974135b6302c723db5d51b0d0efa3eee7dc19 (patch) | |
tree | eb70504d5766fb9a29900404da34a4be020f87e3 | |
parent | a02176debb88a6e838c3b5f888010ae138b79127 (diff) |
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>
-rw-r--r-- | src/soc/intel/common/block/gpio/gpio.c | 4 |
1 files 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)); } } |