Skip to content

Commit 28f49c0

Browse files
authored
Merge pull request #1698 from battlesnake/fix-attrs-on-struct-member
do not apply storage attributes to member of struct
2 parents 5b1b383 + 815c2cc commit 28f49c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/class/audio/audio_device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ typedef struct
341341

342342
// Audio control interrupt buffer - no FIFO - 6 Bytes according to UAC 2 specification (p. 74)
343343
#if CFG_TUD_AUDIO_INT_CTR_EPSIZE_IN
344-
CFG_TUSB_MEM_SECTION CFG_TUSB_MEM_ALIGN uint8_t ep_int_ctr_buf[CFG_TUD_AUDIO_INT_CTR_EP_IN_SW_BUFFER_SIZE];
344+
CFG_TUSB_MEM_ALIGN uint8_t ep_int_ctr_buf[CFG_TUD_AUDIO_INT_CTR_EP_IN_SW_BUFFER_SIZE];
345345
#endif
346346

347347
// Decoding parameters - parameters are set when alternate AS interface is set by host

0 commit comments

Comments
 (0)