diff options
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/stack.c.gen | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build-aux/stack.c.gen b/build-aux/stack.c.gen index 66d837a..60f51fe 100755 --- a/build-aux/stack.c.gen +++ b/build-aux/stack.c.gen @@ -505,6 +505,7 @@ class LibHWPlugin: "hostclock_handle_sig_alarm", "hostnet_handle_sig_io", "gpioirq_handler", + "dmairq_handler", ] def extra_nodes(self) -> typing.Collection[Node]: @@ -527,6 +528,10 @@ class LibHWPlugin: return [ "w5500_intrhandler", ], False + if "/rp2040_dmairq.c:" in loc and "handler->fn" in line: + return [ + "rp2040_hwspi_intrhandler", + ], False return None def skip_call(self, chain: list[str], call: str) -> bool: |