summaryrefslogtreecommitdiff
path: root/nuttx/configs/samv71-xult/src/sam_ili9488.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/samv71-xult/src/sam_ili9488.c')
-rw-r--r--nuttx/configs/samv71-xult/src/sam_ili9488.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/configs/samv71-xult/src/sam_ili9488.c b/nuttx/configs/samv71-xult/src/sam_ili9488.c
index d66ab8d6d..cc60a4d9b 100644
--- a/nuttx/configs/samv71-xult/src/sam_ili9488.c
+++ b/nuttx/configs/samv71-xult/src/sam_ili9488.c
@@ -1115,7 +1115,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
/* Buffer must be provided and aligned to a 16-bit address boundary */
lcdvdbg("row: %d col: %d npixels: %d\n", row, col, npixels);
- DEBUGASSERT(src && ((uintptr_t)src & 1) == 0);
+ DEBUGASSERT(buffer && ((uintptr_t)buffer & 1) == 0);
/* Determine the refresh window area */
@@ -1156,7 +1156,7 @@ static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
/* Buffer must be provided and aligned to a 16-bit address boundary */
lcdvdbg("row: %d col: %d npixels: %d\n", row, col, npixels);
- DEBUGASSERT(dest && ((uintptr_t)dest & 1) == 0);
+ DEBUGASSERT(buffer && ((uintptr_t)buffer & 1) == 0);
/* Determine the refresh window area */