File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -203,11 +203,16 @@ int arch_icache_flush_and_invd_all(void)
203
203
204
204
int arch_icache_flush_range (void * start_addr , size_t size )
205
205
{
206
+ ARG_UNUSED (start_addr );
207
+ ARG_UNUSED (size );
208
+
206
209
return - ENOTSUP ;
207
210
}
208
211
209
212
int arch_icache_invd_range (void * start_addr , size_t size )
210
213
{
214
+ ARG_UNUSED (start_addr );
215
+ ARG_UNUSED (size );
211
216
/* Cortex A/R do have the ICIMVAU operation to selectively invalidate
212
217
* the instruction cache, but not currently supported by CMSIS.
213
218
* For now, invalidate the entire cache.
@@ -219,6 +224,9 @@ int arch_icache_invd_range(void *start_addr, size_t size)
219
224
220
225
int arch_icache_flush_and_invd_range (void * start_addr , size_t size )
221
226
{
227
+ ARG_UNUSED (start_addr );
228
+ ARG_UNUSED (size );
229
+
222
230
return - ENOTSUP ;
223
231
}
224
232
You can’t perform that action at this time.
0 commit comments