mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 09:33:50 +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:
parent
2327d74d24
commit
99337cda9c
@ -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] bus bus the peripheral is connected to
|
||||||
* @param[in] mask bit in the RCC enable register
|
* @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
|
* @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] bus bus the peripheral is connected to
|
||||||
* @param[in] mask bit in the RCC enable register
|
* @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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user