From 0f3b68c1a30658e830839b711e509e56d272995d Mon Sep 17 00:00:00 2001 From: Al Cutter Date: Tue, 24 Sep 2024 13:42:06 +0100 Subject: [PATCH] Track changes --- trusted_os/handler.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/trusted_os/handler.go b/trusted_os/handler.go index 5ec9c13..2937eb1 100644 --- a/trusted_os/handler.go +++ b/trusted_os/handler.go @@ -38,11 +38,7 @@ var irqHandler = make(map[int]func()) func wakeHandler(g uint32, p uint32) func isr() { - irq, end := imx6ul.GIC.GetInterrupt(true) - - if end != nil { - close(end) - } + irq := imx6ul.GIC.GetInterrupt(true) if handle, ok := irqHandler[irq]; ok { handle()