From dd86da6c76db8c03730f9c383b5444ff5e07f45f Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Wed, 5 Apr 2023 17:13:43 +0200 Subject: [PATCH] cpu/stm32/periph_gpio_ll: Fix misleading comments The comments still claim STM32F1 support is missing, but this was recently added. Also, drop an empty line to fix `too many consecutive empty lines` nitpick of the CI. --- cpu/stm32/periph/gpio_ll.c | 3 +-- cpu/stm32/periph/gpio_ll_irq.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cpu/stm32/periph/gpio_ll.c b/cpu/stm32/periph/gpio_ll.c index ae0358e6bb..439b77e564 100644 --- a/cpu/stm32/periph/gpio_ll.c +++ b/cpu/stm32/periph/gpio_ll.c @@ -16,7 +16,7 @@ * @{ * * @file - * @brief GPIO Low-level API implementation for the STM32 GPIO peripheral (except F1) + * @brief GPIO Low-level API implementation for the STM32 GPIO peripheral * * @author Hauke Petersen * @author Fabian Nack @@ -70,7 +70,6 @@ # define GPIOAEN RCC_APB2ENR_IOPAEN #endif - static void _init_clock(gpio_port_t port) { periph_clk_en(GPIO_BUS, (GPIOAEN << GPIO_PORT_NUM(port))); diff --git a/cpu/stm32/periph/gpio_ll_irq.c b/cpu/stm32/periph/gpio_ll_irq.c index 6a6794ce3b..faf5781db0 100644 --- a/cpu/stm32/periph/gpio_ll_irq.c +++ b/cpu/stm32/periph/gpio_ll_irq.c @@ -16,7 +16,7 @@ * @{ * * @file - * @brief IRQ implementation of the GPIO Low-Level API for STM32 (except F1) + * @brief IRQ implementation of the GPIO Low-Level API for STM32 * * @author Hauke Petersen * @author Fabian Nack