Skip to content

Commit 7ace53f

Browse files
gamblor21tannewt
andauthored
Remove comment for define being M4 only it can be M7 too
Co-authored-by: Scott Shawcroft <[email protected]>
1 parent 9bf4b4d commit 7ace53f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-module/audiomixer/Mixer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void audiomixer_mixer_reset_buffer(audiomixer_mixer_obj_t *self,
103103

104104
__attribute__((always_inline))
105105
static inline uint32_t add16signed(uint32_t a, uint32_t b) {
106-
#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1)) // Cortex-M4 w/FPU
106+
#if (defined(__ARM_ARCH_7EM__) && (__ARM_ARCH_7EM__ == 1))
107107
return __QADD16(a, b);
108108
#else
109109
uint32_t result = 0;

0 commit comments

Comments
 (0)