Skip to content

Commit

Permalink
fix gen_syscalls.py for zephyr 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sprhawk authored and tylerwhall committed Mar 9, 2024
1 parent 570e7cc commit f043e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gen_syscalls.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main():
whitelist = set(["kernel.h", "kobject.h", "device.h", "uart.h", "mutex.h", "errno_private.h", "eeprom.h", "time.h"])
includes = ["kernel.h", "device.h", "drivers/uart.h", "sys/mutex.h", "sys/errno_private.h", "drivers/eeprom.h", "posix/time.h"]

for match_group, fn in syscalls:
for match_group, fn, to_emit in syscalls:
if fn not in whitelist:
continue
include = "syscalls/%s" % fn
Expand Down

0 comments on commit f043e46

Please sign in to comment.