Skip to content

Commit

Permalink
fix(esp-rom): Fix comment typos in cache.h
Browse files Browse the repository at this point in the history
Fix typo in parameter names in cache_flash_mmu_set
amd cache_sram_mmu_set functions.

Closes #14518
  • Loading branch information
yamt authored and SoucheSouche committed Nov 13, 2024
1 parent 8ea7ae7 commit dbd394c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/esp_rom/esp32/include/esp32/rom/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void mmu_init(int cpu_no);
*
* @param int cpu_no : CPU number, 0 for PRO cpu, 1 for APP cpu.
*
* @param int pod : process identifier. Range 0~7.
* @param int pid : process identifier. Range 0~7.
*
* @param unsigned int vaddr : virtual address in CPU address space.
* Can be IRam0, IRam1, IRom0 and DRom0 memory address.
Expand Down Expand Up @@ -87,7 +87,7 @@ static inline __attribute__((always_inline)) unsigned int IRAM_ATTR cache_flash_
*
* @param int cpu_no : CPU number, 0 for PRO cpu, 1 for APP cpu.
*
* @param int pod : process identifier. Range 0~7.
* @param int pid : process identifier. Range 0~7.
*
* @param unsigned int vaddr : virtual address in CPU address space.
* Can be IRam0, IRam1, IRom0 and DRom0 memory address.
Expand Down

0 comments on commit dbd394c

Please sign in to comment.