fix: modify some typos to ensure CI pipeline run pass

This commit is contained in:
Li Shuai
2024-03-28 21:14:07 +08:00
parent 1be5cb7e9e
commit 159e58dc27
4 changed files with 11 additions and 11 deletions

View File

@@ -625,7 +625,7 @@ void *regdma_find_module_link_tail(void *link, void *tail, int entry, uint32_t m
/** /**
* @brief Find the tail node of the previous module of the specified module in the REGDMA linked list * @brief Find the tail node of the previous module of the specified module in the REGDMA linked list
* indicated by the entry argument starting from the link argment to the end of the tail argument * indicated by the entry argument starting from the link argument to the end of the tail argument
* @param link The REGDMA linkded list head pointer * @param link The REGDMA linkded list head pointer
* @param tail The REGDMA linkded list tail pointer * @param tail The REGDMA linkded list tail pointer
* @param entry For nodes that support branching, use the branch specified by entry argument recursively * @param entry For nodes that support branching, use the branch specified by entry argument recursively
@@ -636,7 +636,7 @@ void *regdma_find_prev_module_link_tail(void *link, void *tail, int entry, uint3
/** /**
* @brief Find the head node of the next module of the specified module in the REGDMA linked list * @brief Find the head node of the next module of the specified module in the REGDMA linked list
* indicated by the entry argument starting from the link argment to the end of the tail argument * indicated by the entry argument starting from the link argument to the end of the tail argument
* @param link The REGDMA linkded list head pointer * @param link The REGDMA linkded list head pointer
* @param tail The REGDMA linkded list tail pointer * @param tail The REGDMA linkded list tail pointer
* @param entry For nodes that support branching, use the branch specified by entry argument recursively * @param entry For nodes that support branching, use the branch specified by entry argument recursively

View File

@@ -124,7 +124,7 @@ typedef struct {
* information according to the configuration information of the linked list * information according to the configuration information of the linked list
* nodes. * nodes.
* The PMU module triggers REGDMA to use the corresponding linked list when * The PMU module triggers REGDMA to use the corresponding linked list when
* swtiching between different power states. For example: * switching between different power states. For example:
* *
* +---------------+---------------+-------------------+-----------+ * +---------------+---------------+-------------------+-----------+
* | Current | The next | The entry will be | Retention | * | Current | The next | The entry will be | Retention |

View File

@@ -314,7 +314,7 @@ void esp_phy_disable(esp_phy_modem_t modem)
#endif #endif
} }
#if CONFIG_IDF_TARGET_ESP32 #if CONFIG_IDF_TARGET_ESP32
// Update WiFi MAC time before disalbe WiFi/BT common peripheral clock // Update WiFi MAC time before disable WiFi/BT common peripheral clock
phy_update_wifi_mac_time(true, esp_timer_get_time()); phy_update_wifi_mac_time(true, esp_timer_get_time());
#endif #endif
// Disable WiFi/BT common peripheral clock. Do not disable clock for hardware RNG // Disable WiFi/BT common peripheral clock. Do not disable clock for hardware RNG
@@ -473,7 +473,7 @@ void esp_mac_bb_pd_mem_deinit(void)
} }
err = sleep_retention_module_deinit(SLEEP_RETENTION_MODULE_WIFI_BB); err = sleep_retention_module_deinit(SLEEP_RETENTION_MODULE_WIFI_BB);
if (err != ESP_OK) { if (err != ESP_OK) {
ESP_LOGW(TAG, "WiFi BB sleep retention deinit defailed"); ESP_LOGW(TAG, "WiFi BB sleep retention deinit failed");
} }
#endif #endif
} }
@@ -918,7 +918,7 @@ static uint8_t phy_find_bin_type_according_country(const char* country)
if (i == sizeof(s_country_code_map_type_table)/sizeof(phy_country_to_bin_type_t)) { if (i == sizeof(s_country_code_map_type_table)/sizeof(phy_country_to_bin_type_t)) {
phy_init_data_type = ESP_PHY_INIT_DATA_TYPE_DEFAULT; phy_init_data_type = ESP_PHY_INIT_DATA_TYPE_DEFAULT;
ESP_LOGW(TAG, "Use the default certification code beacuse %c%c doesn't have a certificate", country[0], country[1]); ESP_LOGW(TAG, "Use the default certification code because %c%c doesn't have a certificate", country[0], country[1]);
} }
return phy_init_data_type; return phy_init_data_type;

View File

@@ -72,7 +72,7 @@ typedef enum {
#define WIFI_LOG_SUBMODULE_INIT (1) /*logs related to initialization*/ #define WIFI_LOG_SUBMODULE_INIT (1) /*logs related to initialization*/
#define WIFI_LOG_SUBMODULE_IOCTL (1<<1) /*logs related to API calling*/ #define WIFI_LOG_SUBMODULE_IOCTL (1<<1) /*logs related to API calling*/
#define WIFI_LOG_SUBMODULE_CONN (1<<2) /*logs related to connecting*/ #define WIFI_LOG_SUBMODULE_CONN (1<<2) /*logs related to connecting*/
#define WIFI_LOG_SUBMODULE_SCAN (1<<3) /*logs related to scaning*/ #define WIFI_LOG_SUBMODULE_SCAN (1<<3) /*logs related to scanning*/
/** /**
@@ -164,9 +164,9 @@ typedef void (*wifi_netstack_buf_free_cb_t)(void *netstack_buf);
* supports reference counter. * supports reference counter.
* *
* @param wifi_if : wifi interface id * @param wifi_if : wifi interface id
* @param buffer : the buffer to be tansmit * @param buffer : the buffer to be transmit
* @param len : the length of buffer * @param len : the length of buffer
* @param netstack_buf : the netstack buffer related to bufffer * @param netstack_buf : the netstack buffer related to buffer
* *
* @return * @return
* - ESP_OK : Successfully transmit the buffer to wifi driver * - ESP_OK : Successfully transmit the buffer to wifi driver
@@ -574,12 +574,12 @@ void pm_mac_wakeup(void);
#endif #endif
/** /**
* @breif TxDone callback function type. Should be registered using esp_wifi_set_tx_done_cb() * @brief TxDone callback function type. Should be registered using esp_wifi_set_tx_done_cb()
* *
* @param ifidx The interface id that the tx callback has been triggered from * @param ifidx The interface id that the tx callback has been triggered from
* @param data Pointer to the data transmitted * @param data Pointer to the data transmitted
* @param data_len Length of the data transmitted * @param data_len Length of the data transmitted
* @param txStatus True:if the data was transmitted sucessfully False: if data transmission failed * @param txStatus True:if the data was transmitted successfully False: if data transmission failed
*/ */
typedef void (* wifi_tx_done_cb_t)(uint8_t ifidx, uint8_t *data, uint16_t *data_len, bool txStatus); typedef void (* wifi_tx_done_cb_t)(uint8_t ifidx, uint8_t *data, uint16_t *data_len, bool txStatus);