From 712dcee07fef90bdf5da6034cf9c41211860b526 Mon Sep 17 00:00:00 2001 From: Quantum Date: Fri, 13 Aug 2021 06:47:06 -0400 Subject: [PATCH] [host] app: remove useless ALIGN_DN and ALIGN_UP macros --- host/src/app.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/host/src/app.c b/host/src/app.c index 93ca6668..60217aeb 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -45,9 +45,6 @@ #define CONFIG_FILE "looking-glass-host.ini" #define POINTER_SHAPE_BUFFERS 3 -#define ALIGN_DN(x) ((uintptr_t)(x) & ~0x7F) -#define ALIGN_UP(x) ALIGN_DN(x + 0x7F) - static const struct LGMPQueueConfig FRAME_QUEUE_CONFIG = { .queueID = LGMP_Q_FRAME,