mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
tzc380: Fix some asserts
This driver can be compiled in release builds, but GCC generates warnings for some comparisons and that prevents the firmware from being built in debug builds. Change-Id: Ic52e1b4a11896ecf086864fbe2b5bfc143ec9b1b Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
This commit is contained in:
parent
36bc633eec
commit
df54406df5
1 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ void tzc380_init(uintptr_t base)
|
||||||
{
|
{
|
||||||
unsigned int tzc_build;
|
unsigned int tzc_build;
|
||||||
|
|
||||||
assert(base != NULL);
|
assert(base != 0U);
|
||||||
tzc380.base = base;
|
tzc380.base = base;
|
||||||
|
|
||||||
/* Save values we will use later. */
|
/* Save values we will use later. */
|
||||||
|
@ -81,7 +81,7 @@ static uint32_t addr_high(uintptr_t addr __unused)
|
||||||
*/
|
*/
|
||||||
void tzc380_configure_region(uint8_t region, uintptr_t region_base, unsigned int attr)
|
void tzc380_configure_region(uint8_t region, uintptr_t region_base, unsigned int attr)
|
||||||
{
|
{
|
||||||
assert(tzc380.base != NULL);
|
assert(tzc380.base != 0U);
|
||||||
|
|
||||||
assert(region < tzc380.num_regions);
|
assert(region < tzc380.num_regions);
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ void tzc380_configure_region(uint8_t region, uintptr_t region_base, unsigned int
|
||||||
|
|
||||||
void tzc380_set_action(tzc_action_t action)
|
void tzc380_set_action(tzc_action_t action)
|
||||||
{
|
{
|
||||||
assert(tzc380.base != NULL);
|
assert(tzc380.base != 0U);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* - Currently no handler is provided to trap an error via interrupt
|
* - Currently no handler is provided to trap an error via interrupt
|
||||||
|
|
Loading…
Add table
Reference in a new issue