summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--driver/fingerprint/fpc/bep/fpc_private.c2
-rw-r--r--driver/fingerprint/fpc/libfp/fpc_private.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/driver/fingerprint/fpc/bep/fpc_private.c b/driver/fingerprint/fpc/bep/fpc_private.c
index 0a405d4ad5..ae4b8d834b 100644
--- a/driver/fingerprint/fpc/bep/fpc_private.c
+++ b/driver/fingerprint/fpc/bep/fpc_private.c
@@ -19,7 +19,7 @@
#define CPRINTF(format, args...) cprintf(CC_FP, format, ## args)
#define CPRINTS(format, args...) cprints(CC_FP, format, ## args)
-static uint8_t enroll_ctx[FP_ALGORITHM_ENROLLMENT_SIZE] = {0};
+static uint8_t enroll_ctx[FP_ALGORITHM_ENROLLMENT_SIZE] __aligned(4) = {0};
/* Recorded error flags */
static uint16_t errors;
diff --git a/driver/fingerprint/fpc/libfp/fpc_private.c b/driver/fingerprint/fpc/libfp/fpc_private.c
index 623f110187..34fc61f66c 100644
--- a/driver/fingerprint/fpc/libfp/fpc_private.c
+++ b/driver/fingerprint/fpc/libfp/fpc_private.c
@@ -42,7 +42,7 @@
*/
static uint8_t ctx[FP_SENSOR_CONTEXT_SIZE] __uncached __aligned(4);
static bio_sensor_t bio_sensor;
-static uint8_t enroll_ctx[FP_ALGORITHM_ENROLLMENT_SIZE];
+static uint8_t enroll_ctx[FP_ALGORITHM_ENROLLMENT_SIZE] __aligned(4);
/* recorded error flags */
static uint16_t errors;