mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Change __always_inline to __force_inline to suppress GCC errors (#2078)
This commit is contained in:
parent
105a2b89d5
commit
e17a82d291
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue