aboutsummaryrefslogtreecommitdiff
path: root/src/ethosu_driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ethosu_driver.c')
-rw-r--r--src/ethosu_driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ethosu_driver.c b/src/ethosu_driver.c
index 5910fa4..4c1b100 100644
--- a/src/ethosu_driver.c
+++ b/src/ethosu_driver.c
@@ -229,7 +229,7 @@ void __attribute__((weak)) ethosu_irq_handler(struct ethosu_driver *drv)
// Verify that interrupt has been raised
(void)ethosu_is_irq_raised(&drv->dev, &irq_raised);
- ASSERT(irq_raised == 1);
+ assert(irq_raised == 1);
drv->irq_triggered = true;
// Clear interrupt
@@ -237,7 +237,7 @@ void __attribute__((weak)) ethosu_irq_handler(struct ethosu_driver *drv)
// Verify that interrupt has been successfully cleared
(void)ethosu_is_irq_raised(&drv->dev, &irq_raised);
- ASSERT(irq_raised == 0);
+ assert(irq_raised == 0);
if (ethosu_status_has_error(&drv->dev))
{