1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32: fix incorrect doc

The doxygen doc for `periph_lpclk_dis()` and `periph_clk_dis()` we
flip-flopped. This patch corrects this.
This commit is contained in:
Joshua DeWeese 2023-05-18 16:09:19 -04:00
parent 2327d74d24
commit 99337cda9c

View File

@ -144,7 +144,7 @@ void periph_clk_en(bus_t bus, uint32_t mask);
* @param[in] bus bus the peripheral is connected to
* @param[in] mask bit in the RCC enable register
*/
void periph_lpclk_dis(bus_t bus, uint32_t mask);
void periph_clk_dis(bus_t bus, uint32_t mask);
/**
* @brief Enable the given peripheral clock in low power mode
@ -160,7 +160,7 @@ void periph_lpclk_en(bus_t bus, uint32_t mask);
* @param[in] bus bus the peripheral is connected to
* @param[in] mask bit in the RCC enable register
*/
void periph_clk_dis(bus_t bus, uint32_t mask);
void periph_lpclk_dis(bus_t bus, uint32_t mask);
#ifdef __cplusplus
}