mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-17 09:14:04 +00:00
fix(hal): updated naming style for power up and down api for mpi peripheral
This commit updated APIs' naming style to ensure consistency throughout all other peripherals.
This commit is contained in:
@@ -55,12 +55,12 @@ static inline size_t mpi_ll_calculate_hardware_words(size_t words)
|
||||
return words;
|
||||
}
|
||||
|
||||
static inline void mpi_ll_clear_power_control_bit(void)
|
||||
static inline void mpi_ll_power_up(void)
|
||||
{
|
||||
REG_CLR_BIT(SYSTEM_RSA_PD_CTRL_REG, SYSTEM_RSA_MEM_PD);
|
||||
}
|
||||
|
||||
static inline void mpi_ll_set_power_control_bit(void)
|
||||
static inline void mpi_ll_power_down(void)
|
||||
{
|
||||
REG_SET_BIT(SYSTEM_RSA_PD_CTRL_REG, SYSTEM_RSA_MEM_PD);
|
||||
}
|
||||
|
Reference in New Issue
Block a user