Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[style] rp2040 stage2 formatting #17516

Merged
merged 1 commit into from
Jun 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion platforms/chibios/vendors/RP/stage2_bootloaders.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -172,3 +174,5 @@ uint8_t BOOTLOADER_SECTION BOOT2_W25Q080[256] = {
};

#endif

// clang-format on