summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zephyr/shim/include/zephyr_hooks_shim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zephyr/shim/include/zephyr_hooks_shim.h b/zephyr/shim/include/zephyr_hooks_shim.h
index 7175b5a6af..c53d05de9e 100644
--- a/zephyr/shim/include/zephyr_hooks_shim.h
+++ b/zephyr/shim/include/zephyr_hooks_shim.h
@@ -52,7 +52,7 @@ int hook_call_deferred(const struct deferred_data *data, int us);
*/
struct zephyr_shim_hook_list {
void (*routine)(void);
- int priority;
+ uint16_t priority; /* HOOK_PRIO_LAST = 9999 */
enum hook_type type;
struct zephyr_shim_hook_list *next;
};