nuttx: unify FAR attribute usage across the code

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko
2022-04-04 12:46:23 +02:00
committed by Xiang Xiao
parent f527abc324
commit d08fbca679
32 changed files with 93 additions and 86 deletions
+4 -4
View File
@@ -132,8 +132,8 @@ static int lcddev_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
break;
case LCDDEVIO_PUTRUN:
{
const FAR struct lcddev_run_s *lcd_run =
(const FAR struct lcddev_run_s *)arg;
FAR const struct lcddev_run_s *lcd_run =
(FAR const struct lcddev_run_s *)arg;
ret = priv->planeinfo.putrun(lcd_run->row, lcd_run->col,
lcd_run->data, lcd_run->npixels);
@@ -176,8 +176,8 @@ static int lcddev_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
break;
case LCDDEVIO_PUTAREA:
{
const FAR struct lcddev_area_s *lcd_area =
(const FAR struct lcddev_area_s *)arg;
FAR const struct lcddev_area_s *lcd_area =
(FAR const struct lcddev_area_s *)arg;
if (priv->planeinfo.putarea)
{