1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 17:43:51 +01:00

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.
This commit is contained in:
Marian Buschsieweke 2023-04-05 17:13:43 +02:00
parent 07be4be9ed
commit dd86da6c76
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94
2 changed files with 2 additions and 3 deletions

View File

@ -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 <hauke.petersen@fu-berlin.de>
* @author Fabian Nack <nack@inf.fu-berlin.de>
@ -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)));

View File

@ -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 <hauke.petersen@fu-berlin.de>
* @author Fabian Nack <nack@inf.fu-berlin.de>