summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/pcm_sampr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/pcm_sampr.h b/firmware/export/pcm_sampr.h
index 70f2dc2ba2..fc48a943fd 100644
--- a/firmware/export/pcm_sampr.h
+++ b/firmware/export/pcm_sampr.h
@@ -427,10 +427,10 @@ extern const unsigned long rec_freq_sampr[REC_NUM_FREQ];
427 427
428#ifdef CONFIG_SAMPR_TYPES 428#ifdef CONFIG_SAMPR_TYPES
429 429
430#define SAMPR_TYPE_MASK (0xff << 24) 430#define SAMPR_TYPE_MASK (0xffu << 24)
431#define SAMPR_TYPE_PLAY (0x00 << 24) 431#define SAMPR_TYPE_PLAY (0x00u << 24)
432#ifdef HAVE_RECORDING 432#ifdef HAVE_RECORDING
433#define SAMPR_TYPE_REC (0x01 << 24) 433#define SAMPR_TYPE_REC (0x01u << 24)
434#endif 434#endif
435 435
436#ifndef PCM_SAMPR_CONFIG_ONLY 436#ifndef PCM_SAMPR_CONFIG_ONLY