From 0bb02ea0e82a7814c75c494f5f81a2d79f952bd5 Mon Sep 17 00:00:00 2001 From: Void Your Warranty Date: Mon, 7 Oct 2024 04:19:05 +0200 Subject: [PATCH] Fixed an error with rebasing. --- app/src/behaviors/behavior_antecedent_morph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/behaviors/behavior_antecedent_morph.c b/app/src/behaviors/behavior_antecedent_morph.c index 22df363ff5af..74daf8f4e3c5 100644 --- a/app/src/behaviors/behavior_antecedent_morph.c +++ b/app/src/behaviors/behavior_antecedent_morph.c @@ -220,7 +220,7 @@ static int behavior_antecedent_morph_init(const struct device *dev) { }; \ DEVICE_DT_INST_DEFINE(n,behavior_antecedent_morph_init,NULL,&behavior_antecedent_morph_data_##n, \ &behavior_antecedent_morph_config_##n, \ - APPLICATION, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \ + POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \ &behavior_antecedent_morph_driver_api); DT_INST_FOREACH_STATUS_OKAY(KP_INST)