Disable clang-format for stage2_bootloaders (#17516)

This commit is contained in:
Stefan Kerkmann 2022-06-30 21:07:54 +02:00 committed by GitHub
parent d717396708
commit 77d960cce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,9 @@
#include <stdint.h>
#define BOOTLOADER_SECTION __attribute__ ((used, section (".boot2")))
#define BOOTLOADER_SECTION __attribute__((used, section(".boot2")))
// clang-format off
#if defined(RP2040_FLASH_AT25SF128A)
@ -172,3 +174,5 @@ uint8_t BOOTLOADER_SECTION BOOT2_W25Q080[256] = {
};
#endif
// clang-format on