drivers/ioexpander: remove 'FAR' from non-pointer types

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2024-08-24 13:26:34 -04:00 committed by Xiang Xiao
parent 7b18f9d19f
commit 5d17e4795a

View File

@ -330,7 +330,7 @@ static int gpio_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
(FAR enum gpio_pintype_e *)((uintptr_t)arg);
DEBUGASSERT(ptr != NULL);
*ptr = (FAR enum gpio_pintype_e)dev->gp_pintype;
*ptr = (enum gpio_pintype_e)dev->gp_pintype;
ret = OK;
}
break;