Skip to content

Commit

Permalink
Change __always_inline to __force_inline to suppress GCC errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lurch authored Nov 20, 2024
1 parent 6bf5d9b commit 7751388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rp2_common/hardware_xip_cache/xip_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ typedef enum {
// safely from flash, because they are likely to be called during a flash programming operation
// (which makes flash execution momentarily unsafe)

__always_inline static void check_xip_offset_range(uintptr_t start_offset, uintptr_t size_bytes) {
__force_inline static void check_xip_offset_range(uintptr_t start_offset, uintptr_t size_bytes) {
// We use offsets, not addresses, for consistency with the flash API. This means the range of
// valid inputs starts at 0.
(void)start_offset;
Expand Down

0 comments on commit 7751388

Please sign in to comment.