mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
Fix MISRA rule 8.3
Rule 8.3: All declarations of an object or function shall use the same names and type qualifiers. Fixed for: make DEBUG=1 PLAT=juno ARCH=aarch32 AARCH32_SP=sp_min RESET_TO_SP_MIN=1 JUNO_AARCH32_EL3_RUNTIME=1 bl32 Change-Id: Ia34f5155e1cdb67161191f69e8d1248cbaa39e1a Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
This commit is contained in:
parent
b6c07bbb2e
commit
c96f297f8d
5 changed files with 7 additions and 7 deletions
|
@ -37,10 +37,10 @@ void clear_mem_regions(mem_region_t *tbl, size_t nregions);
|
||||||
* in a way that they minimize the number of entries used in the
|
* in a way that they minimize the number of entries used in the
|
||||||
* translation tables.
|
* translation tables.
|
||||||
*/
|
*/
|
||||||
void clear_map_dyn_mem_regions(mem_region_t *region,
|
void clear_map_dyn_mem_regions(struct mem_region *regions,
|
||||||
size_t nregions,
|
size_t nregions,
|
||||||
uintptr_t va,
|
uintptr_t va,
|
||||||
size_t chunk_size);
|
size_t chunk);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* checks that a region (addr + nbytes-1) of memory is totally covered by
|
* checks that a region (addr + nbytes-1) of memory is totally covered by
|
||||||
|
|
|
@ -50,7 +50,7 @@ void clear_mem_regions(mem_region_t *tbl, size_t nregions)
|
||||||
* be cleared, and chunk is the amount of memory mapped and
|
* be cleared, and chunk is the amount of memory mapped and
|
||||||
* cleared in every iteration.
|
* cleared in every iteration.
|
||||||
*/
|
*/
|
||||||
void clear_map_dyn_mem_regions(mem_region_t *regions,
|
void clear_map_dyn_mem_regions(struct mem_region *regions,
|
||||||
size_t nregions,
|
size_t nregions,
|
||||||
uintptr_t va,
|
uintptr_t va,
|
||||||
size_t chunk)
|
size_t chunk)
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
#include "css_mhu_doorbell.h"
|
#include "css_mhu_doorbell.h"
|
||||||
#include "../scmi/scmi.h"
|
#include "../scmi/scmi.h"
|
||||||
|
|
||||||
void mhu_ring_doorbell(scmi_channel_plat_info_t *plat_info)
|
void mhu_ring_doorbell(struct scmi_channel_plat_info *plat_info)
|
||||||
{
|
{
|
||||||
MHU_RING_DOORBELL(plat_info->db_reg_addr,
|
MHU_RING_DOORBELL(plat_info->db_reg_addr,
|
||||||
plat_info->db_modify_mask,
|
plat_info->db_modify_mask,
|
||||||
|
@ -17,7 +17,7 @@ void mhu_ring_doorbell(scmi_channel_plat_info_t *plat_info)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mhuv2_ring_doorbell(scmi_channel_plat_info_t *plat_info)
|
void mhuv2_ring_doorbell(struct scmi_channel_plat_info *plat_info)
|
||||||
{
|
{
|
||||||
/* wake receiver */
|
/* wake receiver */
|
||||||
MHU_V2_ACCESS_REQUEST(MHUV2_BASE_ADDR);
|
MHU_V2_ACCESS_REQUEST(MHUV2_BASE_ADDR);
|
||||||
|
|
|
@ -142,7 +142,7 @@ void css_scp_suspend(const struct psci_power_state *target_state)
|
||||||
* Helper function to turn off a CPU power domain and its parent power domains
|
* Helper function to turn off a CPU power domain and its parent power domains
|
||||||
* if applicable.
|
* if applicable.
|
||||||
*/
|
*/
|
||||||
void css_scp_off(const psci_power_state_t *target_state)
|
void css_scp_off(const struct psci_power_state *target_state)
|
||||||
{
|
{
|
||||||
int lvl = 0, ret;
|
int lvl = 0, ret;
|
||||||
uint32_t scmi_pwr_state = 0;
|
uint32_t scmi_pwr_state = 0;
|
||||||
|
|
|
@ -47,7 +47,7 @@ void css_scp_suspend(const struct psci_power_state *target_state)
|
||||||
* if applicable. Since SCPI doesn't differentiate between OFF and suspend, we
|
* if applicable. Since SCPI doesn't differentiate between OFF and suspend, we
|
||||||
* call the suspend helper here.
|
* call the suspend helper here.
|
||||||
*/
|
*/
|
||||||
void css_scp_off(const psci_power_state_t *target_state)
|
void css_scp_off(const struct psci_power_state *target_state)
|
||||||
{
|
{
|
||||||
css_scp_suspend(target_state);
|
css_scp_suspend(target_state);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue