Convert users of SHAREDDATA_ATTR to SHAREDBSS_ATTR

The handful of uses are only doing zero initialization
so don't need to go in the data section, they can go in
bss instead.

Change-Id: I7108ac60867aa20b4429ac0747d00109563bb3bf
This commit is contained in:
Aidan MacDonald 2026-02-05 10:04:27 +00:00 committed by Solomon Peachy
parent 7b91b81e49
commit bce2c4e069
4 changed files with 4 additions and 4 deletions

View file

@ -799,7 +799,7 @@ static inline bool fft_get_fft(void)
#if NUM_CORES > 1
/* use a worker thread if there is another processor core */
static volatile bool fft_thread_run SHAREDDATA_ATTR = false;
static volatile bool fft_thread_run SHAREDBSS_ATTR;
static unsigned long fft_thread = 0;
static long fft_thread_stack[CACHEALIGN_UP(DEFAULT_STACK_SIZE*4/sizeof(long))]