File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -721,6 +721,8 @@ int arch_mem_domain_init(struct k_mem_domain *domain)
721
721
int arch_mem_domain_partition_add (struct k_mem_domain * domain ,
722
722
uint32_t partition_id )
723
723
{
724
+ ARG_UNUSED (partition_id );
725
+
724
726
/* Force resynchronization for every thread using this domain */
725
727
domain -> arch .pmp_update_nr += 1 ;
726
728
return 0 ;
@@ -729,6 +731,8 @@ int arch_mem_domain_partition_add(struct k_mem_domain *domain,
729
731
int arch_mem_domain_partition_remove (struct k_mem_domain * domain ,
730
732
uint32_t partition_id )
731
733
{
734
+ ARG_UNUSED (partition_id );
735
+
732
736
/* Force resynchronization for every thread using this domain */
733
737
domain -> arch .pmp_update_nr += 1 ;
734
738
return 0 ;
@@ -743,6 +747,8 @@ int arch_mem_domain_thread_add(struct k_thread *thread)
743
747
744
748
int arch_mem_domain_thread_remove (struct k_thread * thread )
745
749
{
750
+ ARG_UNUSED (thread );
751
+
746
752
return 0 ;
747
753
}
748
754
You can’t perform that action at this time.
0 commit comments