arch/addrenv: Add missing FAR qualifier to addrenv_mprot

This commit is contained in:
Ville Juven 2022-05-17 10:45:41 +03:00 committed by Abdelatif Guettouche
parent 06f2c67fc2
commit c2d179a2f4

View file

@ -1203,8 +1203,8 @@ int up_addrenv_detach(FAR struct task_group_s *group, FAR struct tcb_s *tcb);
****************************************************************************/
#ifdef CONFIG_ARCH_ADDRENV
int up_addrenv_mprot(group_addrenv_t *addrenv, uintptr_t addr, size_t len,
int prot);
int up_addrenv_mprot(FAR group_addrenv_t *addrenv, uintptr_t addr,
size_t len, int prot);
#endif
/****************************************************************************