Fix lpc17_40_ubxmdm.c board driver to return -ENOTTY

This commit is contained in:
Alan C. Assis 2020-06-06 15:58:19 -03:00 committed by Abdelatif Guettouche
parent 40376697d7
commit 9718611b29
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ static int lpc17_40_ioctl(FAR struct ubxmdm_lower* lower,
{
/* No platform-specific IOCTL at the moment. */
return -ENOSYS;
return -ENOTTY;
}
/****************************************************************************