mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 09:18:00 +08:00
nuttx: unify FAR attribute usage across the code
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
committed by
Xiang Xiao
parent
f527abc324
commit
d08fbca679
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user